ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Directive.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
13  public $id;
14 
19  public $type;
20 
25  public $default;
26 
31  public $description;
32 
37  public $typeAllowsNull = false;
38 
45  public $allowed;
46 
52  public $aliases = array();
53 
59  public $valueAliases;
60 
66  public $version;
67 
74 
81 
86  public $external = array();
87 }
88 
89 // vim: et sw=4 sts=4
Interchange component class describing configuration directives.
Definition: Directive.php:6
$deprecatedVersion
Version of HTML Purifier this directive was deprecated.
Definition: Directive.php:80
$external
List of external projects this directive depends on, e.g.
Definition: Directive.php:86
$allowed
Lookup table of allowed scalar values.
Definition: Directive.php:45
$aliases
List of aliases for the directive.
Definition: Directive.php:52
$typeAllowsNull
Whether or not null is allowed as a value.
Definition: Directive.php:37
$version
Version of HTML Purifier the directive was introduced, e.g.
Definition: Directive.php:66
$valueAliases
Hash of value aliases, e.g.
Definition: Directive.php:59
$deprecatedUse
ID of directive that supercedes this old directive.
Definition: Directive.php:73