[TYPO3-mvc] Extbase 1.3.0 and scheduler
roberto blanko
robertoblanko at gmail.com
Tue Feb 8 15:58:39 CET 2011
> How does your scheduler code look like now?
>
It looks like this (according to Braulio's example. The clean way according
to Franz doesn't work as Braulio mentioned before):
$configuration = array(
'extensionName' => 'my_ext',
'pluginName' => 'Pi1'
);
$_GET['tx_extension_pi1']['controller'] = 'ExportTask';
$_GET['tx_extension_pi1']['action'] = 'run';
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['extbase']['extensions']['my_ext']['modules']['Pi1']['controllers']
= array(
'ExportTask' => array('actions' => array('run'))
);
$bootstrap = new Tx_Extbase_Core_Bootstrap();
return $bootstrap->run('', $configuration);
More information about the TYPO3-project-typo3v4mvc
mailing list