Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
Public Member Functions | |
__construct ($data, $line=null, $col=null) | |
Transparent constructor. | |
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. | |
$col | |
Column number of the start token in the source document. | |
$data | |
Character data within comment. | |
$dead = false | |
When true, this node should be ignored as non-existent. | |
$is_whitespace = true | |
@type bool | |
$line | |
Line number of the start token in the source document @type int. | |
HTMLPurifier_Node_Comment::__construct | ( | $data, | |
$line = null, | |||
$col = null ) |
Transparent constructor.
string | $data | String comment data. |
int | $line | |
int | $col |
HTMLPurifier_Node_Comment::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
|
inherited |
Column number of the start token in the source document.
Null if unknown. @type int
HTMLPurifier_Node_Comment::$data |
Character data within comment.
@type string
|
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.