rename tabellisting column to filed
This commit is contained in:
@@ -26,11 +26,11 @@ return [
|
||||
'columns' => [
|
||||
'd.domain_ace' => [
|
||||
'label' => $lng['domains']['domainname'],
|
||||
'column' => 'domain_ace',
|
||||
'field' => 'domain_ace',
|
||||
],
|
||||
'd.documentroot' => [
|
||||
'label' => $lng['panel']['path'],
|
||||
'column' => 'documentroot',
|
||||
'field' => 'documentroot',
|
||||
'format_callback' => [Domain::class, 'domainTarget'],
|
||||
]
|
||||
],
|
||||
|
||||
@@ -27,27 +27,27 @@ return [
|
||||
'columns' => [
|
||||
'm.email_full' => [
|
||||
'label' => $lng['emails']['emailaddress'],
|
||||
'column' => 'email_full',
|
||||
'field' => 'email_full',
|
||||
],
|
||||
'm.destination' => [
|
||||
'label' => $lng['emails']['forwarders'],
|
||||
'column' => 'destination',
|
||||
'field' => 'destination',
|
||||
// @todo formatting
|
||||
],
|
||||
'm.popaccountid' => [
|
||||
'label' => $lng['emails']['account'],
|
||||
'column' => 'popaccountid',
|
||||
'field' => 'popaccountid',
|
||||
'format_callback' => [Email::class, 'account'],
|
||||
],
|
||||
'm.iscatchall' => [
|
||||
'label' => $lng['emails']['catchall'],
|
||||
'column' => 'iscatchall',
|
||||
'field' => 'iscatchall',
|
||||
'format_callback' => [Text::class, 'boolean'],
|
||||
'visible' => \Froxlor\Settings::Get('catchall.catchall_enabled') == '1'
|
||||
],
|
||||
'm.quota' => [
|
||||
'label' => $lng['emails']['quota'],
|
||||
'column' => 'quota',
|
||||
'field' => 'quota',
|
||||
'visible' => \Froxlor\Settings::Get('system.mail_quota_enabled') == '1'
|
||||
]
|
||||
],
|
||||
|
||||
@@ -26,20 +26,20 @@ return [
|
||||
'columns' => [
|
||||
'username' => [
|
||||
'label' => $lng['login']['username'],
|
||||
'column' => 'username',
|
||||
'field' => 'username',
|
||||
],
|
||||
'description' => [
|
||||
'label' => $lng['panel']['ftpdesc'],
|
||||
'column' => 'description'
|
||||
'field' => 'description'
|
||||
],
|
||||
'homedir' => [
|
||||
'label' => $lng['panel']['path'],
|
||||
'column' => 'homedir',
|
||||
'field' => 'homedir',
|
||||
'format_callback' => [Ftp::class, 'pathRelative']
|
||||
],
|
||||
'shell' => [
|
||||
'label' => $lng['panel']['shell'],
|
||||
'column' => 'shell',
|
||||
'field' => 'shell',
|
||||
'visible' => \Froxlor\Settings::Get('system.allow_customer_shell') == '1'
|
||||
]
|
||||
],
|
||||
|
||||
@@ -27,29 +27,29 @@ return [
|
||||
'columns' => [
|
||||
'path' => [
|
||||
'label' => $lng['panel']['path'],
|
||||
'column' => 'path',
|
||||
'field' => 'path',
|
||||
'format_callback' => [Ftp::class, 'pathRelative']
|
||||
],
|
||||
'option_indexes' => [
|
||||
'label' => $lng['extras']['view_directory'],
|
||||
'column' => 'option_indexes',
|
||||
'field' => 'option_indexes',
|
||||
'format_callback' => [Text::class, 'boolean']
|
||||
],
|
||||
'error404path' => [
|
||||
'label' => $lng['extras']['error404path'],
|
||||
'column' => 'error404path'
|
||||
'field' => 'error404path'
|
||||
],
|
||||
'error403path' => [
|
||||
'label' => $lng['extras']['error403path'],
|
||||
'column' => 'error403path'
|
||||
'field' => 'error403path'
|
||||
],
|
||||
'error500path' => [
|
||||
'label' => $lng['extras']['error500path'],
|
||||
'column' => 'error500path'
|
||||
'field' => 'error500path'
|
||||
],
|
||||
'options_cgi' => [
|
||||
'label' => $lng['extras']['execute_perl'],
|
||||
'column' => 'options_cgi',
|
||||
'field' => 'options_cgi',
|
||||
'format_callback' => [Text::class, 'boolean'],
|
||||
'visible' => $cperlenabled
|
||||
]
|
||||
|
||||
@@ -26,11 +26,11 @@ return [
|
||||
'columns' => [
|
||||
'username' => [
|
||||
'label' => $lng['login']['username'],
|
||||
'column' => 'username'
|
||||
'field' => 'username'
|
||||
],
|
||||
'path' => [
|
||||
'label' => $lng['panel']['path'],
|
||||
'column' => 'path',
|
||||
'field' => 'path',
|
||||
'format_callback' => [Ftp::class, 'pathRelative']
|
||||
]
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user