mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 06:55:20 +02:00
29 lines
406 B
PHP
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;
|
|
}
|
|
|
|
?>
|