function Smarty::unregister_outputfilter in Quiz 6.5
Same name and namespace in other branches
- 6.6 includes/moodle/lib/smarty/Smarty.class.php \Smarty::unregister_outputfilter()
Unregisters an outputfilter function
Parameters
string $function name of PHP function:
File
- includes/
moodle/ lib/ smarty/ Smarty.class.php, line 900
Class
- Smarty
- @package Smarty
Code
function unregister_outputfilter($function) {
unset($this->_plugins['outputfilter'][$function]);
}