ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Abstract base token class that all others inherit from. More...
Public Member Functions | |
__get ($n) | |
position ($l=null, $c=null) | |
Sets the position of the token in the source document. More... | |
rawPosition ($l, $c) | |
Convenience function for DirectLex settings line/col position. More... | |
toNode () | |
Converts a token into its corresponding node. More... | |
Data Fields | |
$line | |
Line number node was on in source document. More... | |
$col | |
Column of line node was on in source document. More... | |
$armor = array() | |
Lookup array of processing that this token is exempt from. More... | |
$skip | |
Used during MakeWellFormed. More... | |
$rewind | |
$carryover | |
HTMLPurifier_Token::__get | ( | $n | ) |
HTMLPurifier_Token::position | ( | $l = null , |
|
$c = null |
|||
) |
HTMLPurifier_Token::rawPosition | ( | $l, | |
$c | |||
) |
|
abstract |
Converts a token into its corresponding node.
Referenced by rawPosition().
HTMLPurifier_Token::$armor = array() |
Lookup array of processing that this token is exempt from.
Currently, valid values are "ValidateAttributes" and "MakeWellFormed_TagClosedError" array
Definition at line 26 of file Token.php.
Referenced by HTMLPurifier_Token_Tag\__construct().
HTMLPurifier_Token::$col |
Column of line node was on in source document.
Null if unknown. int
Definition at line 18 of file Token.php.
Referenced by HTMLPurifier_Token_Comment\__construct(), HTMLPurifier_Token_Text\__construct(), and HTMLPurifier_Token_Tag\__construct().
HTMLPurifier_Token::$line |
Line number node was on in source document.
Null if unknown. int
Definition at line 12 of file Token.php.
Referenced by HTMLPurifier_Token_Comment\__construct(), HTMLPurifier_Token_Text\__construct(), and HTMLPurifier_Token_Tag\__construct().
HTMLPurifier_Token::$skip |