XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
Text.php
Go to the documentation of this file.
1 <?php
2 
13 {
14 
15  public $name = '#PCDATA';
16  public $data;
17  public $is_whitespace;
24  public function __construct($data, $line = null, $col = null) {
25  $this->data = $data;
26  $this->is_whitespace = ctype_space($data);
27  $this->line = $line;
28  $this->col = $col;
29  }
30 
31 }
32 
33 // vim: et sw=4 sts=4