diff --git a/typo3/sysext/frontend/Configuration/TCA/fe_users.php b/typo3/sysext/frontend/Configuration/TCA/fe_users.php index 4e64f62211ddb7f43b23fbb8f255a85967c3081b..9f55b471f8c5e2001ba88f05def1899491a924a3 100644 --- a/typo3/sysext/frontend/Configuration/TCA/fe_users.php +++ b/typo3/sysext/frontend/Configuration/TCA/fe_users.php @@ -2,6 +2,7 @@ return [ 'ctrl' => [ 'label' => 'username', + 'descriptionColumn' => 'description', 'default_sortby' => 'ORDER BY username', 'tstamp' => 'tstamp', 'crdate' => 'crdate', @@ -17,10 +18,10 @@ return [ 'default' => 'status-user-frontend' ], 'useColumnsForDefaultValues' => 'usergroup,lockToDomain,disable,starttime,endtime', - 'searchFields' => 'username,name,first_name,last_name,middle_name,address,telephone,fax,email,title,zip,city,country,company' + 'searchFields' => 'username,name,first_name,last_name,middle_name,address,telephone,fax,email,title,zip,city,country,company,description' ], 'interface' => [ - 'showRecordFieldList' => 'username,password,usergroup,lockToDomain,name,first_name,middle_name,last_name,title,company,address,zip,city,country,email,www,telephone,fax,disable,starttime,endtime,lastlogin' + 'showRecordFieldList' => 'username,password,usergroup,lockToDomain,name,first_name,middle_name,last_name,title,company,address,zip,city,country,email,www,telephone,fax,disable,starttime,endtime,lastlogin,description' ], 'columns' => [ 'username' => [ @@ -248,6 +249,14 @@ return [ ] ] ], + 'description' => [ + 'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xlf:LGL.description', + 'config' => [ + 'type' => 'text', + 'rows' => 5, + 'cols' => 48 + ] + ], 'TSconfig' => [ 'exclude' => true, 'label' => 'TSconfig:', @@ -282,6 +291,8 @@ return [ lockToDomain, TSconfig, --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access, disable,--palette--;;timeRestriction, + --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:notes, + description, --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended, ', ], diff --git a/typo3/sysext/frontend/ext_tables.sql b/typo3/sysext/frontend/ext_tables.sql index d0f0cd78dc2e65f60d3206ba3d8454ea87670083..df809c119a0c1ee8255bb1eb204ff24e53674158 100644 --- a/typo3/sysext/frontend/ext_tables.sql +++ b/typo3/sysext/frontend/ext_tables.sql @@ -87,6 +87,7 @@ CREATE TABLE fe_users ( cruser_id int(11) unsigned DEFAULT '0' NOT NULL, lockToDomain varchar(50) DEFAULT '' NOT NULL, deleted tinyint(3) unsigned DEFAULT '0' NOT NULL, + description text, uc blob, title varchar(40) DEFAULT '' NOT NULL, zip varchar(10) DEFAULT '' NOT NULL,