-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_localconf.php
More file actions
9 lines (6 loc) · 907 Bytes
/
ext_localconf.php
File metadata and controls
9 lines (6 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
<?php
defined('TYPO3_MODE') or die();
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['ghost']['connections'][\DFAU\Ghost\CmsConfigurationFactory::DEFAULT_CONNECTION_NAME]['receivers']['WarmCache'] = \DFAU\CacheWarmer\Receiver\WarmCacheReceiver::class;
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['ghost']['connections'][\DFAU\Ghost\CmsConfigurationFactory::DEFAULT_CONNECTION_NAME]['receivers']['CollectXmlSitemapUrls'] = \DFAU\CacheWarmer\Receiver\CollectXmlSitemapUrlsReceiver::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][\DFAU\CacheWarmer\Command\CacheWarmerCommandController::class] = \DFAU\CacheWarmer\Command\CacheWarmerCommandController::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearCachePostProc'][\DFAU\CacheWarmer\DataHandling\CacheWarmingHook::class] = \DFAU\CacheWarmer\DataHandling\CacheWarmingHook::class . '->clearCache';