dont show search-icon/exclude specific non-searchable fields from overviews
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -31,6 +31,7 @@ return [
|
||||
'title' => lng('admin.cron.cronsettings'),
|
||||
'icon' => 'fa-solid fa-clock-rotate-left',
|
||||
'default_sorting' => ['c.id' => 'asc'],
|
||||
'no_search' => true,
|
||||
'columns' => [
|
||||
'c.desc_lng_key' => [
|
||||
'label' => lng('cron.description'),
|
||||
|
||||
@@ -43,18 +43,22 @@ return [
|
||||
'label' => lng('ssl_certificates.certificate_for'),
|
||||
'field' => 'domain',
|
||||
'callback' => [SSLCertificate::class, 'domainWithSan'],
|
||||
'searchable' => false,
|
||||
],
|
||||
'c.issuer' => [
|
||||
'label' => lng('ssl_certificates.issuer'),
|
||||
'field' => 'issuer',
|
||||
'searchable' => false,
|
||||
],
|
||||
'c.validfromdate' => [
|
||||
'label' => lng('ssl_certificates.valid_from'),
|
||||
'field' => 'validfromdate',
|
||||
'searchable' => false,
|
||||
],
|
||||
'c.validtodate' => [
|
||||
'label' => lng('ssl_certificates.valid_until'),
|
||||
'field' => 'validtodate',
|
||||
'searchable' => false,
|
||||
],
|
||||
],
|
||||
'visible_columns' => Listing::getVisibleColumnsForListing('sslcertificates_list', [
|
||||
|
||||
Reference in New Issue
Block a user