ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Comment.php
Go to the documentation of this file.
1 <?php
2 
7 {
12  public $data;
13 
17  public $is_whitespace = true;
18 
26  public function __construct($data, $line = null, $col = null)
27  {
28  $this->data = $data;
29  $this->line = $line;
30  $this->col = $col;
31  }
32 
33  public function toTokenPair() {
34  return array(new HTMLPurifier_Token_Comment($this->data, $this->line, $this->col), null);
35  }
36 }