Moodle PHP Documentation 4.4
Moodle 4.4.1 (Build: 20240610) (db07c09afc5)
|
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. | |
Public Attributes | |
$armor = array() | |
Lookup array of processing that this token is exempt from. | |
$attr = array() | |
Associative array of the node's attributes. | |
$children = array() | |
List of child elements. | |
$col | |
Column number of the start token in the source document. | |
$dead = false | |
When true, this node should be ignored as non-existent. | |
$empty = false | |
Does this use the form or the form, i.e. | |
$endArmor = array() | |
$endCol = null | |
$endLine = null | |
$line | |
Line number of the start token in the source document @type int. | |
$name | |
The lower-case name of the tag, like 'a', 'b' or 'blockquote'. | |
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. @type array
Reimplemented from HTMLPurifier_Node.
|
inherited |
Lookup array of processing that this token is exempt from.
Currently, valid values are "ValidateAttributes". @type array
HTMLPurifier_Node_Element::$attr = array() |
Associative array of the node's attributes.
@type array
HTMLPurifier_Node_Element::$children = array() |
List of child elements.
@type array
|
inherited |
Column number of the start token in the source document.
Null if unknown. @type int
|
inherited |
When true, this node should be ignored as non-existent.
Who is responsible for ignoring dead nodes? FixNesting is responsible for removing them before passing on to child validators.
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. @bool
HTMLPurifier_Node_Element::$name |
The lower-case name of the tag, like 'a', 'b' or 'blockquote'.