You are here

function Smarty::unregister_modifier in Quiz 6.5

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

Unregisters modifier

Parameters

string $modifier name of template modifier:

File

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

Class

Smarty
@package Smarty

Code

function unregister_modifier($modifier) {
  unset($this->_plugins['modifier'][$modifier]);
}