first commit
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* Represents a directive ID in the interchange format.
|
||||
|
||||
*/
|
||||
|
||||
class HTMLPurifier_ConfigSchema_Interchange_Id
|
||||
|
||||
{
|
||||
|
||||
|
||||
|
||||
public $key;
|
||||
|
||||
|
||||
|
||||
public function __construct($key) {
|
||||
|
||||
$this->key = $key;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
* @warning This is NOT magic, to ensure that people don't abuse SPL and
|
||||
|
||||
* cause problems for PHP 5.0 support.
|
||||
|
||||
*/
|
||||
|
||||
public function toString() {
|
||||
Reference in New Issue
Block a user