tagtransform.php

来自「很棒的在线教学系统」· PHP 代码 · 共 41 行

PHP
41
字号
<?phprequire_once 'HTMLPurifier/Token.php';/** * Defines a mutation of an obsolete tag into a valid tag. */class HTMLPurifier_TagTransform{        /**     * Tag name to transform the tag to.     * @public     */    var $transform_to;        /**     * Transforms the obsolete tag into the valid tag.     * @param $tag Tag to be transformed.     * @param $config Mandatory HTMLPurifier_Config object     * @param $context Mandatory HTMLPurifier_Context object     */    function transform($tag, $config, &$context) {        trigger_error('Call to abstract function', E_USER_ERROR);    }        /**     * Prepends CSS properties to the style attribute, creating the     * attribute if it doesn't exist.     * @warning Copied over from AttrTransform, be sure to keep in sync     * @param $attr Attribute array to process (passed by reference)     * @param $css CSS to prepend     */    function prependCSS(&$attr, $css) {        $attr['style'] = isset($attr['style']) ? $attr['style'] : '';        $attr['style'] = $css . $attr['style'];    }    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?