[TYPO3-dev] Add Palettes to TCA

tapio tapio.markula at dnainternet.net
Fri Dec 30 17:04:23 CET 2005


Thomas Peterson wrote:
> Hello,
> 
> I work on cc_metamp3 for DAM.
> 
> I want to use Palettes for my Fields. But i have not Found a function to add 
> this.

look at TCA in the tca.php of 'tt_address',
which use good examples for this


	'types' => Array (	
		'1' => Array('showitem' => 'hidden;;;;1-1-1, name;;2;;3-3-3, address, 
zip, city;;3, email;;5, phone;;4, image;;;;4-4-4, description')
	),
	'palettes' => Array (
		'2' => Array('showitem' => 'title, name_order, company'),
		'3' => Array('showitem' => 'country'),
		'4' => Array('showitem' => 'mobile, fax'),
		'5' => Array('showitem' => 'www')
	)




More information about the TYPO3-dev mailing list