ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
Node.php
Go to the documentation of this file.
1<?php
2
11abstract 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
Abstract base node class that all others inherit from.
Definition: Node.php:12
$armor
Lookup array of processing that this token is exempt from.
Definition: Node.php:30
$line
Line number of the start token in the source document @type int.
Definition: Node.php:17
toTokenPair()
Returns a pair of start and end tokens, where the end token is null if it is not necessary.
$col
Column number of the start token in the source document.
Definition: Node.php:23
$dead
When true, this node should be ignored as non-existent.
Definition: Node.php:39