Хранилища Subversion ant

Редакция

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

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