⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bdodir.php

📁 基于Php和Mysql的项目管理软件
💻 PHP
字号:
<?phprequire_once 'HTMLPurifier/AttrTransform.php';// this MUST be placed in post, as it assumes that any value in dir is validHTMLPurifier_ConfigSchema::define(    'Attr', 'DefaultTextDir', 'ltr', 'string',    'Defines the default text direction (ltr or rtl) of the document '.    'being parsed.  This generally is the same as the value of the dir '.    'attribute in HTML, or ltr if that is not specified.');HTMLPurifier_ConfigSchema::defineAllowedValues(    'Attr', 'DefaultTextDir', array( 'ltr', 'rtl' ));/** * Post-trasnform that ensures that bdo tags have the dir attribute set. */class HTMLPurifier_AttrTransform_BdoDir extends HTMLPurifier_AttrTransform{        function transform($attr, $config, $context) {        if (isset($attr['dir'])) return $attr;        $attr['dir'] = $config->get('Attr', 'DefaultTextDir');        return $attr;    }    }?>

⌨️ 快捷键说明

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