Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_getcachelifetime.php
1 <?php
3 /**
4 * Smarty method GetCacheLifetime
5
6 * Returns lifetime of cache files
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Smarty class getCacheLifetime
15
16 * Returns lifetime of cache files
17 */
18 /**
19 * Returns lifetime of cache files
20
21 * @return integer cache file lifetime
22 */
23 function  Smarty_Method_GetCacheLifetime($smarty)
24 {
25     return $smarty->cache_lifetime;
26
28 ?>