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

📄 template.php.in

📁 很棒的在线教学系统
💻 IN
字号:
<?php

require_once 'HTMLPurifier/DefinitionCache/Decorator.php';

/**
 * Definition cache decorator template.
 */
class HTMLPurifier_DefinitionCache_Decorator_Template extends
      HTMLPurifier_DefinitionCache_Decorator
{
    
    var $name = 'Template'; // replace this
    
    function copy() {
        // replace class name with yours
        return new HTMLPurifier_DefinitionCache_Decorator_Template();
    }
    
    // remove methods you don't need
    
    function add($def, $config) {
        return parent::add($def, $config);
    }
    
    function set($def, $config) {
        return parent::set($def, $config);
    }
    
    function replace($def, $config) {
        return parent::replace($def, $config);
    }
    
    function get($config) {
        return parent::get($config);
    }
    
    function flush() {
        return parent::flush();
    }
    
    function cleanup($config) {
        return parent::cleanup($config);
    }
    
}

⌨️ 快捷键说明

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