rename tabellisting column to filed

This commit is contained in:
envoyr
2022-02-27 20:04:40 +01:00
parent f1e91af58a
commit 3186c2b37d
5 changed files with 19 additions and 19 deletions

View File

@@ -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'
]
],