+2010-09-30 Francois Suter <francois@typo3.org>
+
+ * Fixed bug #15639: Scheduler: Add missing classes and interface to autoload registry (Thanks to Marcus Krause)
+
2010-09-30 Steffen Gebert <steffen@steffen-gebert.de>
- * Fixed bug #12889: fe_adminLib.inc usages deprecated function split() (Thanks to Steffen Kamper and Ismaël Bidau)
+ * Fixed bug #12889: fe_adminLib.inc usages deprecated function split() (Thanks to Steffen Kamper and Ismaël Bidau)
2010-09-29 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #15858: htlmArea RTE: Stylesheet access error in Google Chrome 7
- * Fixed bug #15863: htmlArea RTE: Initilization never completes in Google Chrome 7
+ * Fixed bug #15863: htmlArea RTE: Initialization never completes in Google Chrome 7
2010-09-29 Steffen Kamper <steffen@typo3.org>
*
* $Id$
*/
-// TODO: document necessity of providing autoloader information
+$extensionPath = t3lib_extMgm::extPath('scheduler');
return array(
- 'tx_scheduler' => t3lib_extMgm::extPath('scheduler', 'class.tx_scheduler.php'),
- 'tx_scheduler_croncmd' => t3lib_extMgm::extPath('scheduler', 'class.tx_scheduler_croncmd.php'),
- 'tx_scheduler_task' => t3lib_extMgm::extPath('scheduler', 'class.tx_scheduler_task.php'),
- 'tx_scheduler_execution' => t3lib_extMgm::extPath('scheduler', 'class.tx_scheduler_execution.php'),
- 'tx_scheduler_failedexecutionexception' => t3lib_extMgm::extPath('scheduler', 'class.tx_scheduler_failedexecutionexception.php'),
- 'tx_scheduler_testtask' => t3lib_extMgm::extPath('scheduler', 'examples/class.tx_scheduler_testtask.php'),
- 'tx_scheduler_testtask_additionalfieldprovider' => t3lib_extMgm::extPath('scheduler', 'examples/class.tx_scheduler_testtask_additionalfieldprovider.php'),
- 'tx_scheduler_sleeptask' => t3lib_extMgm::extPath('scheduler', 'examples/class.tx_scheduler_sleeptask.php'),
- 'tx_scheduler_sleeptask_additionalfieldprovider' => t3lib_extMgm::extPath('scheduler', 'examples/class.tx_scheduler_sleeptask_additionalfieldprovider.php')
+ 'tx_scheduler' => $extensionPath . 'class.tx_scheduler.php',
+ 'tx_scheduler_croncmd' => $extensionPath . 'class.tx_scheduler_croncmd.php',
+ 'tx_scheduler_execution' => $extensionPath . 'class.tx_scheduler_execution.php',
+ 'tx_scheduler_failedexecutionexception' => $extensionPath . 'class.tx_scheduler_failedexecutionexception.php',
+ 'tx_scheduler_task' => $extensionPath . 'class.tx_scheduler_task.php',
+ 'tx_scheduler_sleeptask' => $extensionPath . 'examples/class.tx_scheduler_sleeptask.php',
+ 'tx_scheduler_sleeptask_additionalfieldprovider' => $extensionPath . 'examples/class.tx_scheduler_sleeptask_additionalfieldprovider.php',
+ 'tx_scheduler_testtask' => $extensionPath . 'examples/class.tx_scheduler_testtask.php',
+ 'tx_scheduler_testtask_additionalfieldprovider' => $extensionPath . 'examples/class.tx_scheduler_testtask_additionalfieldprovider.php',
+ 'tx_scheduler_additionalfieldprovider' => $extensionPath . 'interfaces/interface.tx_scheduler_additionalfieldprovider.php',
+ 'tx_scheduler_module' => $extensionPath . 'mod1/index.php',
+ 'tx_scheduler_croncmdtest' => $extensionPath . 'tests/tx_scheduler_croncmdTest.php',
);
?>
\ No newline at end of file