HTMLPurifier_ConfigSchema_Interchange_Directive
in package
Interchange component class describing configuration directives.
Table of Contents
Properties
- $aliases : mixed
- List of aliases for the directive.
- $allowed : mixed
- Lookup table of allowed scalar values.
- $default : mixed
- Default value, e.g. 3 or 'DefaultVal'.
- $deprecatedUse : mixed
- ID of directive that supercedes this old directive.
- $deprecatedVersion : mixed
- Version of HTML Purifier this directive was deprecated. Null if not deprecated.
- $description : mixed
- HTML description.
- $external : mixed
- List of external projects this directive depends on, e.g. array('CSSTidy').
- $id : mixed
- ID of directive.
- $type : mixed
- Type, e.g. 'integer' or 'istring'.
- $typeAllowsNull : mixed
- Whether or not null is allowed as a value.
- $valueAliases : mixed
- Hash of value aliases, e.g. array('alt' => 'real'). Null if value aliasing is disabled (necessary for non-scalar types).
- $version : mixed
- Version of HTML Purifier the directive was introduced, e.g. '1.3.1'.
Properties
$aliases
List of aliases for the directive.
public
mixed
$aliases
= array()
e.g. array(new HTMLPurifier_ConfigSchema_Interchange_Id('Ns', 'Dir'))).
Tags
$allowed
Lookup table of allowed scalar values.
public
mixed
$allowed
e.g. array('allowed' => true). Null if all values are allowed.
Tags
$default
Default value, e.g. 3 or 'DefaultVal'.
public
mixed
$default
Tags
$deprecatedUse
ID of directive that supercedes this old directive.
public
mixed
$deprecatedUse
Null if not deprecated.
Tags
$deprecatedVersion
Version of HTML Purifier this directive was deprecated. Null if not deprecated.
public
mixed
$deprecatedVersion
Tags
$description
HTML description.
public
mixed
$description
Tags
$external
List of external projects this directive depends on, e.g. array('CSSTidy').
public
mixed
$external
= array()
Tags
$id
ID of directive.
public
mixed
$id
Tags
$type
Type, e.g. 'integer' or 'istring'.
public
mixed
$type
Tags
$typeAllowsNull
Whether or not null is allowed as a value.
public
mixed
$typeAllowsNull
= \false
Tags
$valueAliases
Hash of value aliases, e.g. array('alt' => 'real'). Null if value aliasing is disabled (necessary for non-scalar types).
public
mixed
$valueAliases
Tags
$version
Version of HTML Purifier the directive was introduced, e.g. '1.3.1'.
public
mixed
$version
Null if the directive has always existed.