ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Text.php
Go to the documentation of this file.
1 <?php
2 
13 {
14 
20  public $name = '#PCDATA';
21 
25  public $data;
31  public $is_whitespace;
32 
41  public function __construct($data, $is_whitespace, $line = null, $col = null)
42  {
43  $this->data = $data;
44  $this->is_whitespace = $is_whitespace;
45  $this->line = $line;
46  $this->col = $col;
47  }
48 
49  public function toTokenPair() {
50  return array(new HTMLPurifier_Token_Text($this->data, $this->line, $this->col), null);
51  }
52 }
53 
54 // vim: et sw=4 sts=4