[TYPO3-mvc] Scaffolding for the Extbase Kickstarter
Robert Böttner
lists at boettner.it
Tue Feb 9 14:46:51 CET 2010
> That you can have only one plugin (ie pi1) with ExtBase. You cannot create a pi2 and have it work as
> expected.
You can have as many as you like by defining them with
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY, // The extension name (in UpperCamelCase) or the extension key (in lower_underscore)
'Pi1', // A unique name of the plugin in UpperCamelCase
array( // An array holding the controller-action-combinations that are accessible
'Controller1' => 'new,create,edit,delete,update', // The first controller and its first action will be the default
'Controller2' => 'edit,delete,update',
),
array( // An array of non-cachable controller-action-combinations (they must already be enabled)
'Controller1' => 'new,create,edit,delete,update', // The first controller and its first action will be the default
'Controller2' => 'edit,delete,update',
)
);
in ext_localconf.php or am I missing sth?
Cheers
Robert.
More information about the TYPO3-project-typo3v4mvc
mailing list