Index: typo3/sysext/scheduler/locallang.xml =================================================================== --- typo3/sysext/scheduler/locallang.xml (revision 9229) +++ typo3/sysext/scheduler/locallang.xml (working copy) @@ -10,6 +10,8 @@ + + \ No newline at end of file Index: typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml =================================================================== --- typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml (revision 9229) +++ typo3/sysext/scheduler/mod1/locallang_csh_scheduler.xml (working copy) @@ -62,6 +62,8 @@ + + Index: typo3/sysext/scheduler/mod1/locallang.xml =================================================================== --- typo3/sysext/scheduler/mod1/locallang.xml (revision 9229) +++ typo3/sysext/scheduler/mod1/locallang.xml (working copy) @@ -16,6 +16,7 @@ + Index: typo3/sysext/scheduler/ext_localconf.php =================================================================== --- typo3/sysext/scheduler/ext_localconf.php (revision 9229) +++ typo3/sysext/scheduler/ext_localconf.php (working copy) @@ -29,4 +29,13 @@ 'additionalFields' => 'tx_scheduler_SleepTask_AdditionalFieldProvider' ); } -?> \ No newline at end of file + + // Add caching framework garbage collection task +$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['tx_scheduler_CachingFrameworkGarbageCollection'] = array( + 'extension' => $_EXTKEY, + 'title' => 'LLL:EXT:' . $_EXTKEY . '/locallang.xml:cachingFrameworkGarbageCollection.name', + 'description' => 'LLL:EXT:' . $_EXTKEY . '/locallang.xml:cachingFrameworkGarbageCollection.description', + 'additionalFields' => 'tx_scheduler_CachingFrameworkGarbageCollection_AdditionalFieldProvider', + ); + +?> Index: typo3/sysext/scheduler/ext_autoload.php =================================================================== --- typo3/sysext/scheduler/ext_autoload.php (revision 9229) +++ typo3/sysext/scheduler/ext_autoload.php (working copy) @@ -18,5 +18,7 @@ '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', + 'tx_scheduler_cachingframeworkgarbagecollection' => $extensionPath . 'tasks/class.tx_scheduler_cachingframeworkgarbagecollection.php', + 'tx_scheduler_cachingframeworkgarbagecollection_additionalfieldprovider' => $extensionPath . 'tasks/class.tx_scheduler_cachingframeworkgarbagecollection_additionalfieldprovider.php', ); -?> \ No newline at end of file +?>