Хранилища Subversion ant

Редакция

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

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
* Smarty method Unregister_Outputfilter
5
*
6
* Unregister a outputfilter
7
*
8
* @package Smarty
9
* @subpackage SmartyMethod
10
* @author Uwe Tews
11
*/
12
 
13
/**
14
* Unregister a outputfilter
15
*/
16
 
17
/**
18
* Registers an output filter function to apply
19
* to a template output
20
*
21
* @param callback $function
22
*/
23
function unregister_outputfilter($smarty, $function)
24
{
25
    unset($smarty->registered_filters['output'][$smarty->_get_filter_name($function)]);
26
}
27
 
28
?>