"MDL-12304, fix double text"
[moodle-linuxchix.git] / lib / htmlpurifier / HTMLPurifier / ConfigDef / Namespace.php
blob21d732114fdb3a48113ad82295c4320e55db7b41
1 <?php
3 require_once 'HTMLPurifier/ConfigDef.php';
5 /**
6 * Structure object describing of a namespace
7 */
8 class HTMLPurifier_ConfigDef_Namespace extends HTMLPurifier_ConfigDef {
10 function HTMLPurifier_ConfigDef_Namespace($description = null) {
11 $this->description = $description;
14 var $class = 'namespace';
16 /**
17 * String description of what kinds of directives go in this namespace.
19 var $description;