denyelementdecorator.php
来自「很棒的在线教学系统」· PHP 代码 · 共 27 行
PHP
27 行
<?php/** * Decorator which enables CSS properties to be disabled for specific elements. */class HTMLPurifier_AttrDef_CSS_DenyElementDecorator extends HTMLPurifier_AttrDef{ var $def, $element; /** * @param $def Definition to wrap * @param $element Element to deny */ function HTMLPurifier_AttrDef_CSS_DenyElementDecorator(&$def, $element) { $this->def =& $def; $this->element = $element; } /** * Checks if CurrentToken is set and equal to $this->element */ function validate($string, $config, $context) { $token = $context->get('CurrentToken', true); if ($token && $token->name == $this->element) return false; return $this->def->validate($string, $config, $context); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?