[Typo3-dev] Templa Voila - Content Wizzard

martin Ficzel martin.ficzel at gmx.de
Thu Apr 21 12:49:19 CEST 2005


The TemplaVoila-ContentWizzard displays item wich are not acessible by 
current user and does'nt display fce's

i am working on a solution for that wich includes several ideas from the 
lists and the standard page module code

therefore i have to change the the way the wizzarditems are stored

old way:

$wizardItems = array(
	....
	'params'=>'&defVals[tt_content][CType]=text'
), ...........

my way:

$wizardItems = array(
	....
	'params'=>'',
	'defVals'=> array(
		'tt_content'=> array(
			'CType'=>'text'
		)
	)
), .........

the change is necessary to for checking the rights, otherwise i'd have 
to parse the params string again. the params string is now generated if 
the check was sucessfull.

Question:

- i mostly want to know what you think aout changing the 
wizzarditems-array ... i will not put much work into it if the change is 
not accepted ... a dirty hack for my needs is already running

- is there a chance to get this into the extension in future if it is 
finished (for the moment i'm develping as an extension)

regards Martin




More information about the TYPO3-dev mailing list