clearCompiledTemplates() public static method

Clear compiled Twig templates
public static clearCompiledTemplates ( )
コード例 #1
0
ファイル: Filesystem.php プロジェクト: josl/CGE-File-Sharing
 /**
  * Called on Core install, update, plugin enable/disable
  * Will clear all cache that could be affected by the change in configuration being made
  */
 public static function deleteAllCacheOnUpdate($pluginName = false)
 {
     AssetManager::getInstance()->removeMergedAssets($pluginName);
     View::clearCompiledTemplates();
     Cache::deleteTrackerCache();
     self::clearPhpCaches();
 }