You are here

function Smarty::unregister_outputfilter in Quiz 6.6

Same name and namespace in other branches
  1. 6.5 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]);
}