Хранилища Subversion ant

Редакция

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

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
* Smarty method enableForceCompile
5
*
6
* Enable forced compiling
7
*
8
* @package Smarty
9
* @subpackage SmartyMethod
10
* @author Uwe Tews
11
*/
12
 
13
/**
14
* Enable forced compiling
15
*/
16
public function enableForceCompile($smarty)
17
{
18
    $smarty->force_compile = true;
19
    return;
20
}
21
 
22
?>