Bug #28266 ยป clearautoloadcache.diff
t3lib/class.t3lib_extmgm.php | ||
---|---|---|
* @return integer Number of deleted files.
|
||
*/
|
||
public static function removeCacheFiles($cacheFilePrefix = NULL) {
|
||
$phpCodeCache = $GLOBALS['typo3CacheManager']->getCache('cache_phpcode');
|
||
$autoloadCacheIdentifier = TYPO3_MODE === 'FE' ? 't3lib_autoload_FE' : 't3lib_autoload_BE';
|
||
$phpCodeCache->remove($autoloadCacheIdentifier);
|
||
$cacheFiles = self::currentCacheFiles($cacheFilePrefix);
|
||
$out = 0;
|