2009-03-22 16:09:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Smarty method Clear_All_Cache
|
|
|
|
*
|
|
|
|
* Empties the cache folder
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-08-08 17:28:23 +00:00
|
|
|
* Empty cache folder
|
2009-03-22 16:09:05 +00:00
|
|
|
*
|
2009-08-08 17:28:23 +00:00
|
|
|
* @param object $smarty
|
|
|
|
* @param integer $exp_time expiration time
|
|
|
|
* @param string $type resource type
|
|
|
|
* @return integer number of cache files deleted
|
2009-03-22 16:09:05 +00:00
|
|
|
*/
|
2009-11-27 20:46:56 +00:00
|
|
|
function Smarty_Method_Clear_All_Cache($smarty, $exp_time = null, $type = null)
|
2009-08-08 17:28:23 +00:00
|
|
|
{
|
|
|
|
// load cache resource
|
2009-11-27 20:46:56 +00:00
|
|
|
$cacheResource = $smarty->loadCacheResource($type);
|
2009-08-08 17:28:23 +00:00
|
|
|
|
2009-11-27 20:46:56 +00:00
|
|
|
return $cacheResource->clearAll($exp_time);
|
2009-03-22 16:09:05 +00:00
|
|
|
}
|
2009-08-08 17:28:23 +00:00
|
|
|
|
2009-03-22 16:09:05 +00:00
|
|
|
?>
|