Хранилища Subversion ant

Редакция

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

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
* Smarty method getCacheDir
5
*
6
* Returns directory of cache files
7
*
8
* @package Smarty
9
* @subpackage SmartyMethod
10
* @author Uwe Tews
11
*/
12
 
13
/**
14
* Returns directory of cache files
15
*/
16
 
17
/**
18
* Returns directory of cache files
19
*
20
* @return array cache folder
21
*/
22
public function getCacheDir($smarty)
23
{
24
    return $this->smarty->cache_dir;
25
}
26
 
27
?>