HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/Token/Comment.php
Go to the documentation of this file.
00001 <?php
00002 
00006 class HTMLPurifier_Token_Comment extends HTMLPurifier_Token
00007 {
00008     public $data; 
00009     public $is_whitespace = true;
00015     public function __construct($data, $line = null, $col = null) {
00016         $this->data = $data;
00017         $this->line = $line;
00018         $this->col  = $col;
00019     }
00020 }
00021 
00022 // vim: et sw=4 sts=4