game/onyx2/modules/templates/smarty/sysplugins/smarty_method_register_outputfilter.php

26 lines
454 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method Register_Outputfilter
*
* Registers a PHP function as outputfilter
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Registers an output filter function to apply
* to a template output
*
* @param object $smarty
* @param callback $function
*/
function register_outputfilter($smarty, $function)
{
$smarty->registered_filters['output'][$smarty->_get_filter_name($function)] = $function;
}
?>