2009-03-30 17:05:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2009-11-03 20:38:38 +00:00
|
|
|
* Smarty method GetCacheLifetime
|
2009-03-30 17:05:37 +00:00
|
|
|
*
|
|
|
|
* Returns lifetime of cache files
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Smarty class getCacheLifetime
|
|
|
|
*
|
|
|
|
* Returns lifetime of cache files
|
|
|
|
*/
|
2009-08-08 17:28:23 +00:00
|
|
|
/**
|
2009-03-30 17:05:37 +00:00
|
|
|
* Returns lifetime of cache files
|
2009-08-08 17:28:23 +00:00
|
|
|
*
|
|
|
|
* @return integer cache file lifetime
|
|
|
|
*/
|
2009-11-03 20:38:38 +00:00
|
|
|
function Smarty_Method_GetCacheLifetime($smarty)
|
2009-08-08 17:28:23 +00:00
|
|
|
{
|
|
|
|
return $smarty->cache_lifetime;
|
2009-03-30 17:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|