Files
smarty/libs/sysplugins/smarty_method_getcachelifetime.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

29 lines
406 B
PHP

<?php
/**
* Smarty method GetCacheLifetime
*
* Returns lifetime of cache files
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class getCacheLifetime
*
* Returns lifetime of cache files
*/
/**
* Returns lifetime of cache files
*
* @return integer cache file lifetime
*/
function Smarty_Method_GetCacheLifetime($smarty)
{
return $smarty->cache_lifetime;
}
?>