[TYPO3-mvc] Extbase 1.3.0 and scheduler

Marc Bastian Heinrichs typo3 at mbh-web.de
Tue Feb 8 17:38:26 CET 2011


Hey,

>> Or can I at least assign my Crontroller to a backend module? But how would
>> the configuration for that look like?
> 
> $bootstrap = t3lib_div::makeInstance('Tx_Extbase_Core_Bootstrap');
> $output = $bootstrap->callModule('M_module_signature');
> 
> Not sure if this would work like expected. But internally extbase is 
> doing the very same then with plugins, only that the namespace changed 
> from plugin.tx to module.tx.

It would not work like expected because
Tx_Extbase_Utility_Extension::configurePlugin
registers the controller and action config in
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['extbase']['extensions'][$extensionName]['plugins'][$pluginName],

but the configuration manager, which is running in BE mode looks at
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['extbase']['extensions'][$extensionName]['modules'][$pluginName]
for it.

:-(

Best
Marc Bastian


More information about the TYPO3-project-typo3v4mvc mailing list