You are here

function Smarty::unregister_postfilter in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/moodle/lib/smarty/Smarty.class.php \Smarty::unregister_postfilter()

Unregisters a postfilter function

Parameters

string $function name of PHP function:

File

includes/moodle/lib/smarty/Smarty.class.php, line 877

Class

Smarty
@package Smarty

Code

function unregister_postfilter($function) {
  unset($this->_plugins['postfilter'][$function]);
}