Хранилища Subversion ant

Редакция

Содержимое файла | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
* Smarty method getCacheLifetime
5
*
6
* Returns lifetime of cache files
7
*
8
* @package Smarty
9
* @subpackage SmartyMethod
10
* @author Uwe Tews
11
*/
12
 
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 getCacheLifetime($smarty)
24
{
25
    return $smarty->cache_lifetime;
26
}
27
 
28
?>