mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
ec59062a9d
- Optimize ConfigSchema by removing non-essential runtime data. We can probably optimize even more by collapsing object structures to arrays. - Removed validation data from ConfigSchema; this will be reimplemented on Interchange - Implement a sane Interchange composite hierarchy that doesn't use arrays - Implement StringHash -> Interchange -> ConfigSchema, and rewrite maintenance file to account for this git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1615 48356398-32a2-884e-a903-53898d9a118a
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Structure object containing definition of a directive.
|
|
* @note This structure does not contain default values
|
|
*/
|
|
class HTMLPurifier_ConfigDef_Directive extends HTMLPurifier_ConfigDef
|
|
{
|
|
|
|
public $class = 'directive';
|
|
|
|
public function __construct(
|
|
$type = null,
|
|
$allow_null = null,
|
|
$allowed = null,
|
|
$aliases = null
|
|
) {
|
|
if ( $type !== null) $this->type = $type;
|
|
if ( $allow_null !== null) $this->allow_null = $allow_null;
|
|
if ( $allowed !== null) $this->allowed = $allowed;
|
|
if ( $aliases !== null) $this->aliases = $aliases;
|
|
}
|
|
|
|
/**
|
|
* Allowed type of the directive. Values are:
|
|
* - string
|
|
* - istring (case insensitive string)
|
|
* - int
|
|
* - float
|
|
* - bool
|
|
* - lookup (array of value => true)
|
|
* - list (regular numbered index array)
|
|
* - hash (array of key => value)
|
|
* - mixed (anything goes)
|
|
*/
|
|
public $type = 'mixed';
|
|
|
|
/**
|
|
* Is null allowed? Has no effect for mixed type.
|
|
* @bool
|
|
*/
|
|
public $allow_null = false;
|
|
|
|
/**
|
|
* Lookup table of allowed values of the element, bool true if all allowed.
|
|
*/
|
|
public $allowed = true;
|
|
|
|
/**
|
|
* Hash of value aliases, i.e. values that are equivalent.
|
|
*/
|
|
public $aliases = array();
|
|
|
|
/**
|
|
* Advisory list of directive aliases, i.e. other directives that
|
|
* redirect here
|
|
*/
|
|
public $directiveAliases = array();
|
|
|
|
}
|
|
|