Хранилища Subversion ant

Редакция

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

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