ILIAS  release_4-4 Revision
HTMLPurifier_Token_Text Class Reference

Concrete text token class. More...

+ Inheritance diagram for HTMLPurifier_Token_Text:
+ Collaboration diagram for HTMLPurifier_Token_Text:

Public Member Functions

 __construct ($data, $line=null, $col=null)
 Constructor, accepts data and determines if it is whitespace. More...
 
- Public Member Functions inherited from HTMLPurifier_Token
 __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...
 

Data Fields

 $name = '#PCDATA'
 PCDATA tag name compatible with DTD. More...
 
 $data
 Parsed character data of text. More...
 
 $is_whitespace
 Bool indicating if node is whitespace. More...
 
- Data Fields inherited from HTMLPurifier_Token
 $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
 

Detailed Description

Concrete text token class.

Text tokens comprise of regular parsed character data (PCDATA) and raw character data (from the CDATA sections). Internally, their data is parsed with all entities expanded. Surprisingly, the text token does have a "tag name" called #PCDATA, which is how the DTD represents it in permissible child nodes.

Definition at line 12 of file Text.php.

Constructor & Destructor Documentation

◆ __construct()

HTMLPurifier_Token_Text::__construct (   $data,
  $line = null,
  $col = null 
)

Constructor, accepts data and determines if it is whitespace.

Parameters
$dataString parsed character data.

Definition at line 24 of file Text.php.

References HTMLPurifier_Token\$col, $data, and HTMLPurifier_Token\$line.

24  {
25  $this->data = $data;
26  $this->is_whitespace = ctype_space($data);
27  $this->line = $line;
28  $this->col = $col;
29  }
$data
Parsed character data of text.
Definition: Text.php:16
$line
Line number node was on in source document.
Definition: Token.php:7
$col
Column of line node was on in source document.
Definition: Token.php:8

Field Documentation

◆ $data

HTMLPurifier_Token_Text::$data

Parsed character data of text.

Definition at line 16 of file Text.php.

Referenced by __construct().

◆ $is_whitespace

HTMLPurifier_Token_Text::$is_whitespace

Bool indicating if node is whitespace.

Definition at line 17 of file Text.php.

◆ $name

HTMLPurifier_Token_Text::$name = '#PCDATA'

PCDATA tag name compatible with DTD.

Definition at line 15 of file Text.php.


The documentation for this class was generated from the following file: