mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
26 lines
611 B
PHP
26 lines
611 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Represents a directive ID in the interchange format.
|
||
|
*/
|
||
|
class HTMLPurifier_ConfigSchema_Interchange_Id
|
||
|
{
|
||
|
|
||
|
public $namespace, $directive;
|
||
|
|
||
|
public function __construct($namespace, $directive) {
|
||
|
$this->namespace = $namespace;
|
||
|
$this->directive = $directive;
|
||
|
}
|
||
|
|
||
|
public function __toString() {
|
||
|
return $this->namespace . '.' . $this->directive;
|
||
|
}
|
||
|
|
||
|
public static function make($id) {
|
||
|
list($namespace, $directive) = explode('.', $id);
|
||
|
return new HTMLPurifier_ConfigSchema_Interchange_Id($namespace, $directive);
|
||
|
}
|
||
|
|
||
|
}
|