4 * Configuration definition, defines directives and their defaults.
6 class HTMLPurifier_ConfigSchema
9 * Defaults of the directives and namespaces.
11 * @note This shares the exact same structure as HTMLPurifier_Config::$conf
13 public $defaults = array();
16 * The default property list. Do not edit this property list.
22 * Definition of the directives.
23 * The structure of this is:
26 * 'Namespace' => array(
27 * 'Directive' => new stdclass(),
31 * The stdclass may have the following properties:
33 * - If isAlias isn't set:
34 * - type: Integer type of directive, see HTMLPurifier_VarParser for definitions
35 * - allow_null: If set, this directive allows null values
36 * - aliases: If set, an associative array of value aliases to real values
37 * - allowed: If set, a lookup array of allowed (string) values
38 * - If isAlias is set:
39 * - namespace: Namespace this directive aliases to
40 * - name: Directive name this directive aliases to
42 * In certain degenerate cases, stdclass will actually be an integer. In
43 * that case, the value is equivalent to an stdclass with the type
44 * property set to the integer. If the integer is negative, type is
45 * equal to the absolute value of integer, and allow_null is true.
47 * This class is friendly with HTMLPurifier_Config. If you need introspection
48 * about the schema, you're better of using the ConfigSchema_Interchange,
49 * which uses more memory but has much richer information.
52 public $info = array();
55 * Application-wide singleton
56 * @type HTMLPurifier_ConfigSchema
58 protected static $singleton;
60 public function __construct()
62 $this->defaultPlist
= new HTMLPurifier_PropertyList();
66 * Unserializes the default ConfigSchema.
67 * @return HTMLPurifier_ConfigSchema
69 public static function makeFromSerial()
71 $contents = file_get_contents(HTMLPURIFIER_PREFIX
. '/HTMLPurifier/ConfigSchema/schema.ser');
72 $r = unserialize($contents);
74 $hash = sha1($contents);
75 trigger_error("Unserialization of configuration schema failed, sha1 of file was $hash", E_USER_ERROR
);
81 * Retrieves an instance of the application-wide configuration definition.
82 * @param HTMLPurifier_ConfigSchema $prototype
83 * @return HTMLPurifier_ConfigSchema
85 public static function instance($prototype = null)
87 if ($prototype !== null) {
88 HTMLPurifier_ConfigSchema
::$singleton = $prototype;
89 } elseif (HTMLPurifier_ConfigSchema
::$singleton === null ||
$prototype === true) {
90 HTMLPurifier_ConfigSchema
::$singleton = HTMLPurifier_ConfigSchema
::makeFromSerial();
92 return HTMLPurifier_ConfigSchema
::$singleton;
96 * Defines a directive for configuration
97 * @warning Will fail of directive's namespace is defined.
98 * @warning This method's signature is slightly different from the legacy
99 * define() static method! Beware!
100 * @param string $key Name of directive
101 * @param mixed $default Default value of directive
102 * @param string $type Allowed type of the directive. See
103 * HTMLPurifier_DirectiveDef::$type for allowed values
104 * @param bool $allow_null Whether or not to allow null values
106 public function add($key, $default, $type, $allow_null)
108 $obj = new stdclass();
109 $obj->type
= is_int($type) ?
$type : HTMLPurifier_VarParser
::$types[$type];
111 $obj->allow_null
= true;
113 $this->info
[$key] = $obj;
114 $this->defaults
[$key] = $default;
115 $this->defaultPlist
->set($key, $default);
119 * Defines a directive value alias.
121 * Directive value aliases are convenient for developers because it lets
122 * them set a directive to several values and get the same result.
123 * @param string $key Name of Directive
124 * @param array $aliases Hash of aliased values to the real alias
126 public function addValueAliases($key, $aliases)
128 if (!isset($this->info
[$key]->aliases
)) {
129 $this->info
[$key]->aliases
= array();
131 foreach ($aliases as $alias => $real) {
132 $this->info
[$key]->aliases
[$alias] = $real;
137 * Defines a set of allowed values for a directive.
138 * @warning This is slightly different from the corresponding static
140 * @param string $key Name of directive
141 * @param array $allowed Lookup array of allowed values
143 public function addAllowedValues($key, $allowed)
145 $this->info
[$key]->allowed
= $allowed;
149 * Defines a directive alias for backwards compatibility
150 * @param string $key Directive that will be aliased
151 * @param string $new_key Directive that the alias will be to
153 public function addAlias($key, $new_key)
156 $obj->key
= $new_key;
157 $obj->isAlias
= true;
158 $this->info
[$key] = $obj;
162 * Replaces any stdclass that only has the type property with type integer.
164 public function postProcess()
166 foreach ($this->info
as $key => $v) {
167 if (count((array) $v) == 1) {
168 $this->info
[$key] = $v->type
;
169 } elseif (count((array) $v) == 2 && isset($v->allow_null
)) {
170 $this->info
[$key] = -$v->type
;
176 // vim: et sw=4 sts=4