[TYPO3-english] Typo3 scheduler: Can i somehow execute Action of controllers of my extension with it or my code?
Mikel
lists at con-version.com
Mon Nov 6 16:46:30 CET 2017
See here https://docs.typo3.org/typo3cms/extensions/scheduler/DevelopersGuide/CreatingTasks/Index.html <https://docs.typo3.org/typo3cms/extensions/scheduler/DevelopersGuide/CreatingTasks/Index.html>
Scroll down to „Declaring the task class“.
So you have to declare the task in your ext_localconf.php.
E.g.
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['Vendor\\ExtName\\Task\\LogManagerTask'] = array(
'extension' => $_EXTKEY,
'title' => 'Log Manager',
'description' => 'Your description showing up in the scheduler overview'
);
Mikel
More information about the TYPO3-english
mailing list