root/afridex/plugins/Flutter/purifier_lib/HTMLPurifier/ConfigDef/DirectiveAlias.php @ 23

Revision 21, 475 bytes (checked in by admin, 18 years ago)
Line 
1<?php
2
3/**
4 * Structure object describing a directive alias
5 */
6class HTMLPurifier_ConfigDef_DirectiveAlias extends HTMLPurifier_ConfigDef
7{
8    public $class = 'alias';
9   
10    /**
11     * Namespace being aliased to
12     */
13    public $namespace;
14    /**
15     * Directive being aliased to
16     */
17    public $name;
18   
19    public function __construct($namespace, $name) {
20        $this->namespace = $namespace;
21        $this->name = $name;
22    }
23}
24
Note: See TracBrowser for help on using the browser.