|
ILIAS
Release_5_0_x_branch Revision 61816
|
Concrete element node class. More...
Inheritance diagram for HTMLPurifier_Node_Element:
Collaboration diagram for HTMLPurifier_Node_Element:Public Member Functions | |
| __construct ($name, $attr=array(), $line=null, $col=null, $armor=array()) | |
| toTokenPair () | |
| Returns a pair of start and end tokens, where the end token is null if it is not necessary. | |
Data Fields | |
| $name | |
| The lower-case name of the tag, like 'a', 'b' or 'blockquote'. | |
| $attr = array() | |
| Associative array of the node's attributes. | |
| $children = array() | |
| List of child elements. | |
| $empty = false | |
| Does this use the form or the form, i.e. | |
| $endCol = null | |
| $endLine = null | |
| $endArmor = array() | |
Data Fields inherited from HTMLPurifier_Node | |
| $line | |
| Line number of the start token in the source document int. | |
| $col | |
| Column number of the start token in the source document. | |
| $armor = array() | |
| Lookup array of processing that this token is exempt from. | |
| $dead = false | |
| When true, this node should be ignored as non-existent. | |
Concrete element node class.
Definition at line 6 of file Element.php.
| HTMLPurifier_Node_Element::__construct | ( | $name, | |
$attr = array(), |
|||
$line = null, |
|||
$col = null, |
|||
$armor = array() |
|||
| ) |
Definition at line 39 of file Element.php.
References HTMLPurifier_Node\$armor, $attr, HTMLPurifier_Node\$col, HTMLPurifier_Node\$line, and $name.
| HTMLPurifier_Node_Element::toTokenPair | ( | ) |
Returns a pair of start and end tokens, where the end token is null if it is not necessary.
Does not include children. array
Reimplemented from HTMLPurifier_Node.
Definition at line 47 of file Element.php.
| HTMLPurifier_Node_Element::$attr = array() |
Associative array of the node's attributes.
array
Definition at line 22 of file Element.php.
Referenced by __construct().
| HTMLPurifier_Node_Element::$children = array() |
| HTMLPurifier_Node_Element::$empty = false |
Does this use the form or the form, i.e.
is it a pair of start/end tokens or an empty token.
Definition at line 35 of file Element.php.
| HTMLPurifier_Node_Element::$endArmor = array() |
Definition at line 37 of file Element.php.
| HTMLPurifier_Node_Element::$endCol = null |
Definition at line 37 of file Element.php.
| HTMLPurifier_Node_Element::$endLine = null |
Definition at line 37 of file Element.php.
| HTMLPurifier_Node_Element::$name |
The lower-case name of the tag, like 'a', 'b' or 'blockquote'.
Definition at line 16 of file Element.php.
Referenced by __construct().