ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
32
37 public $typeAllowsNull = false;
38
45 public $allowed;
46
52 public $aliases = array();
53
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:7
$allowed
Lookup table of allowed scalar values.
Definition: Directive.php:45
$version
Version of HTML Purifier the directive was introduced, e.g.
Definition: Directive.php:66
$external
List of external projects this directive depends on, e.g.
Definition: Directive.php:86
$typeAllowsNull
Whether or not null is allowed as a value.
Definition: Directive.php:37
$deprecatedVersion
Version of HTML Purifier this directive was deprecated.
Definition: Directive.php:80
$deprecatedUse
ID of directive that supercedes this old directive.
Definition: Directive.php:73
$aliases
List of aliases for the directive.
Definition: Directive.php:52
$valueAliases
Hash of value aliases, e.g.
Definition: Directive.php:59