3 require_once 'HTMLPurifier/Token.php';
6 * Defines a mutation of an obsolete tag into a valid tag.
8 class HTMLPurifier_TagTransform
12 * Tag name to transform the tag to.
18 * Transforms the obsolete tag into the valid tag.
19 * @param $tag Tag to be transformed.
20 * @param $config Mandatory HTMLPurifier_Config object
21 * @param $context Mandatory HTMLPurifier_Context object
23 function transform($tag, $config, &$context) {
24 trigger_error('Call to abstract function', E_USER_ERROR
);