Feature #20530 ยป 11221_v8.diff
typo3/sysext/cms/tbl_cms.php (working copy) | ||
---|---|---|
'max' => '80'
|
||
)
|
||
),
|
||
'first_name' => array(
|
||
'exclude' => 1,
|
||
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.first_name',
|
||
'config' => array(
|
||
'type' => 'input',
|
||
'size' => '25',
|
||
'eval' => 'trim',
|
||
'max' => '50'
|
||
)
|
||
),
|
||
'middle_name' => array(
|
||
'exclude' => 1,
|
||
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.middle_name',
|
||
'config' => array(
|
||
'type' => 'input',
|
||
'size' => '25',
|
||
'eval' => 'trim',
|
||
'max' => '50'
|
||
)
|
||
),
|
||
'last_name' => array(
|
||
'exclude' => 1,
|
||
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.last_name',
|
||
'config' => array(
|
||
'type' => 'input',
|
||
'size' => '25',
|
||
'eval' => 'trim',
|
||
'max' => '50'
|
||
)
|
||
),
|
||
'address' => array(
|
||
'exclude' => 1,
|
||
'label' => 'LLL:EXT:lang/locallang_general.php:LGL.address',
|
||
... | ... | |
'types' => array(
|
||
'0' => array('showitem' => '
|
||
disable,username;;;;1-1-1, password, usergroup, lastlogin;;;;1-1-1,
|
||
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.personelData, name;;1;;1-1-1, address, zip, city, country, telephone, fax, email, www, image;;;;2-2-2,
|
||
--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,
|
||
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.options, lockToDomain;;;;1-1-1, TSconfig;;;;2-2-2,
|
||
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.access, starttime, endtime,
|
||
--div--;LLL:EXT:cms/locallang_tca.xml:fe_users.tabs.extended
|
||
... | ... | |
')
|
||
),
|
||
'palettes' => array(
|
||
'1' => array('showitem' => 'title,company')
|
||
'1' => array('showitem' => 'title'),
|
||
'2' => array('showitem' => 'first_name,--linebreak--,middle_name,--linebreak--,last_name')
|
||
)
|
||
);
|
||
|
typo3/sysext/cms/ext_tables.sql (working copy) | ||
---|---|---|
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||
name varchar(80) DEFAULT '' NOT NULL,
|
||
first_name varchar(50) DEFAULT '' NOT NULL,
|
||
middle_name varchar(50) DEFAULT '' NOT NULL,
|
||
last_name varchar(50) DEFAULT '' NOT NULL,
|
||
address varchar(255) DEFAULT '' NOT NULL,
|
||
telephone varchar(20) DEFAULT '' NOT NULL,
|
||
fax varchar(20) DEFAULT '' NOT NULL,
|
typo3/sysext/lang/locallang_general.xml (working copy) | ||
---|---|---|
<label index="LGL.subheader">Subheader:</label>
|
||
<label index="LGL.text">Text:</label>
|
||
<label index="LGL.name">Name:</label>
|
||
<label index="LGL.first_name">First name:</label>
|
||
<label index="LGL.middle_name">Middle name:</label>
|
||
<label index="LGL.last_name">Last name:</label>
|
||
<label index="LGL.title">Title:</label>
|
||
<label index="LGL.title_person">Title:</label>
|
||
<label index="LGL.address">Address:</label>
|