Хранилища Subversion ant

Редакция

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

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