ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
Node.php
Go to the documentation of this file.
1 <?php
2 
11 abstract class HTMLPurifier_Node
12 {
17  public $line;
18 
23  public $col;
24 
30  public $armor = array();
31 
39  public $dead = false;
40 
46  abstract public function toTokenPair();
47 }
48 
49 // vim: et sw=4 sts=4
$dead
When true, this node should be ignored as non-existent.
Definition: Node.php:39
Abstract base node class that all others inherit from.
Definition: Node.php:11
Create styles array
The data for the language used.
$line
Line number of the start token in the source document int.
Definition: Node.php:17
$col
Column number of the start token in the source document.
Definition: Node.php:23
toTokenPair()
Returns a pair of start and end tokens, where the end token is null if it is not necessary.
$armor
Lookup array of processing that this token is exempt from.
Definition: Node.php:30