12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
-
-
- class Smarty_Internal_Method_ClearCache
- {
-
-
- public $objMap = 1;
-
-
-
- public function clearCache(Smarty $smarty, $template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
- {
-
- $_cache_resource = Smarty_CacheResource::load($smarty, $type);
- $_cache_resource->invalidLoadedCache($smarty);
- return $_cache_resource->clear($smarty, $template_name, $cache_id, $compile_id, $exp_time);
- }
- }
|