12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
-
-
- class Smarty_Internal_Method_ClearAllCache
- {
-
-
- public $objMap = 1;
-
-
-
- public function clearAllCache(Smarty $smarty, $exp_time = null, $type = null)
- {
-
- $_cache_resource = Smarty_CacheResource::load($smarty, $type);
- $_cache_resource->invalidLoadedCache($smarty);
- return $_cache_resource->clearAll($smarty, $exp_time);
- }
- }
|