2010-09-08 23:14:17 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic schema interchange format that can be converted to a runtime
|
|
|
|
* representation (HTMLPurifier_ConfigSchema) or HTML documentation. Members
|
|
|
|
* are completely validated.
|
|
|
|
*/
|
|
|
|
class HTMLPurifier_ConfigSchema_Interchange
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the application this schema is describing.
|
2016-02-09 05:06:17 -05:00
|
|
|
* @type string
|
2010-09-08 23:14:17 -04:00
|
|
|
*/
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of Directive ID => array(directive info)
|
2016-02-09 05:06:17 -05:00
|
|
|
* @type HTMLPurifier_ConfigSchema_Interchange_Directive[]
|
2010-09-08 23:14:17 -04:00
|
|
|
*/
|
|
|
|
public $directives = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a directive array to $directives
|
2016-02-09 05:06:17 -05:00
|
|
|
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive
|
|
|
|
* @throws HTMLPurifier_ConfigSchema_Exception
|
2010-09-08 23:14:17 -04:00
|
|
|
*/
|
2016-02-09 05:06:17 -05:00
|
|
|
public function addDirective($directive)
|
|
|
|
{
|
2010-09-08 23:14:17 -04:00
|
|
|
if (isset($this->directives[$i = $directive->id->toString()])) {
|
|
|
|
throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine directive '$i'");
|
|
|
|
}
|
|
|
|
$this->directives[$i] = $directive;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience function to perform standard validation. Throws exception
|
|
|
|
* on failed validation.
|
|
|
|
*/
|
2016-02-09 05:06:17 -05:00
|
|
|
public function validate()
|
|
|
|
{
|
2010-09-08 23:14:17 -04:00
|
|
|
$validator = new HTMLPurifier_ConfigSchema_Validator();
|
|
|
|
return $validator->validate($this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: et sw=4 sts=4
|