Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_unregister_outputfilter.php
1 <?php
3 /**
4 * Smarty method Unregister_Outputfilter
5
6 * Unregister a outputfilter
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Unregister a outputfilter
15 */
17 /**
18 * Registers an output filter function to apply
19 * to a template output
20
21 * @param callback $function 
22 */
23 function  Smarty_Method_Unregister_Outputfilter($smarty, $function)
24 {
25     unset($smarty->registered_filters['output'][$smarty->_get_filter_name($function)]);
26
28 ?>