ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
Interchange.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
14  public $name;
15 
19  public $directives = array();
20 
24  public function addDirective($directive) {
25  if (isset($this->directives[$i = $directive->id->toString()])) {
26  throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine directive '$i'");
27  }
28  $this->directives[$i] = $directive;
29  }
30 
35  public function validate() {
36  $validator = new HTMLPurifier_ConfigSchema_Validator();
37  return $validator->validate($this);
38  }
39 
40 }
41 
42 // vim: et sw=4 sts=4
Performs validations on HTMLPurifier_ConfigSchema_Interchange.
Definition: Validator.php:11
$directives
Array of Directive ID => array(directive info)
Definition: Interchange.php:19
Generic schema interchange format that can be converted to a runtime representation (HTMLPurifier_Con...
Definition: Interchange.php:8
Exceptions related to configuration schema.
Definition: Exception.php:6
$name
Name of the application this schema is describing.
Definition: Interchange.php:14
addDirective($directive)
Adds a directive array to $directives.
Definition: Interchange.php:24
validate()
Convenience function to perform standard validation.
Definition: Interchange.php:35