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 
18  public $name = '#PCDATA';
24  public $data;
30  public $is_whitespace;
31 
40  public function __construct($data, $line = null, $col = null)
41  {
42  $this->data = $data;
43  $this->is_whitespace = ctype_space($data);
44  $this->line = $line;
45  $this->col = $col;
46  }
47 
48  public function toNode() {
49  return new HTMLPurifier_Node_Text($this->data, $this->is_whitespace, $this->line, $this->col);
50  }
51 }
52 
53 // vim: et sw=4 sts=4