[Typo3-dev] a wizard for keywords

Martin Kutschker Martin.T.Kutschker at blackbox.net
Mon Sep 8 16:28:39 CEST 2003


Hi!

I tried to add a wizard to the "keywords" column of "pages". I finally succeded with this code in ext_tables.php:

$TCA["pages"]["columns"]["keywords"]["config"]["wizards"] =
array_merge($TCA["pages"]["columns"]["keywords"]["config"]["wizards"],
Array (
"edit" => Array (
"type" => "popup",
"title" => "My Wizard",
"script" => t3lib_extMgm::extPath($_EXTKEY)."/wiz_test.php",
)
)
);

This works, but shouldn't I use t3lib_div::loadTCA() and t3lib_extMgm::addTCAcolumns()? I tried to but failed. But I populated only the "wizards" array.

Masi 





More information about the TYPO3-dev mailing list