| 44 |
44 |
$TCA['fe_users'] = array(
|
| 45 |
45 |
'ctrl' => $TCA['fe_users']['ctrl'],
|
| 46 |
46 |
'interface' => array(
|
| 47 |
|
'showRecordFieldList' => 'username,password,usergroup,lockToDomain,name,title,company,address,zip,city,country,email,www,telephone,fax,disable,starttime,endtime,lastlogin'
|
|
47 |
'showRecordFieldList' => 'username,password,usergroup,lockToDomain,gender,name,birthday,title,company,address,zip,city,country,email,www,telephone,fax,disable,starttime,endtime,lastlogin'
|
| 48 |
48 |
),
|
| 49 |
49 |
'feInterface' => $TCA['fe_users']['feInterface'],
|
| 50 |
50 |
'columns' => array(
|
| ... | ... | |
| 89 |
89 |
'softref' => 'substitute'
|
| 90 |
90 |
)
|
| 91 |
91 |
),
|
|
92 |
'gender' => array(
|
|
93 |
'exclude' => 1,
|
|
94 |
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.gender',
|
|
95 |
'config' => array(
|
|
96 |
'type' => 'select',
|
|
97 |
'size' => 1,
|
|
98 |
'maxitems' => 1,
|
|
99 |
'minitems' => 0,
|
|
100 |
'items' => array(
|
|
101 |
array('LLL:EXT:lang/locallang_general.php:LGL.gender.I.0', '0'),
|
|
102 |
array('LLL:EXT:lang/locallang_general.php:LGL.gender.I.1', '1'),
|
|
103 |
array('LLL:EXT:lang/locallang_general.php:LGL.gender.I.2', '2'),
|
|
104 |
)
|
|
105 |
)
|
|
106 |
),
|
| 92 |
107 |
'name' => array(
|
| 93 |
108 |
'exclude' => 1,
|
| 94 |
109 |
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.name',
|
| ... | ... | |
| 129 |
144 |
'max' => '50'
|
| 130 |
145 |
)
|
| 131 |
146 |
),
|
|
147 |
'birthday' => array(
|
|
148 |
'exclude' => 1,
|
|
149 |
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.birthday',
|
|
150 |
'config' => array(
|
|
151 |
'type' => 'input',
|
|
152 |
'size' => '8',
|
|
153 |
'max' => '20',
|
|
154 |
'eval' => 'date',
|
|
155 |
'default' => '0',
|
|
156 |
'checkbox' => '0'
|
|
157 |
)
|
|
158 |
),
|
| 132 |
159 |
'address' => array(
|
| 133 |
160 |
'exclude' => 1,
|
| 134 |
161 |
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.address',
|
| ... | ... | |
| 313 |
340 |
'types' => array(
|
| 314 |
341 |
'0' => array('showitem' => '
|
| 315 |
342 |
disable,username;;;;1-1-1, password, usergroup, lastlogin;;;;1-1-1,
|
| 316 |
|
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.personelData, company;;1;;1-1-1, name;;2;;2-2-2, address, zip, city, country, telephone, fax, email, www, image;;;;2-2-2,
|
|
343 |
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.personelData, company;;1;;1-1-1, name;;2;;2-2-2, birthday, address, zip, city, country, telephone, fax, email, www, image;;;;2-2-2,
|
| 317 |
344 |
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.options, lockToDomain;;;;1-1-1, TSconfig;;;;2-2-2,
|
| 318 |
345 |
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.access, starttime, endtime,
|
| 319 |
346 |
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.extended
|
| ... | ... | |
| 322 |
349 |
),
|
| 323 |
350 |
'palettes' => array(
|
| 324 |
351 |
'1' => array('showitem' => 'title'),
|
| 325 |
|
'2' => array('showitem' => 'first_name,--linebreak--,middle_name,--linebreak--,last_name')
|
|
352 |
'2' => array('showitem' => 'gender,first_name,--linebreak--,middle_name,--linebreak--,last_name')
|
| 326 |
353 |
)
|
| 327 |
354 |
);
|
| 328 |
355 |
|