aboutsummaryrefslogtreecommitdiffstats
path: root/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in
blob: 21a8fcfda2415808ba432ce7fa14041286198ada (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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);
    }

}

// vim: et sw=4 sts=4