mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
fac747bdbd
With minor corrections. Signed-off-by: Marcus Bointon <marcus@synchromedia.co.uk> Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
35 lines
637 B
PHP
35 lines
637 B
PHP
<?php
|
|
|
|
/**
|
|
* Concrete comment token class. Generally will be ignored.
|
|
*/
|
|
class HTMLPurifier_Token_Comment extends HTMLPurifier_Token
|
|
{
|
|
/**
|
|
* Character data within comment.
|
|
* @type string
|
|
*/
|
|
public $data;
|
|
|
|
/**
|
|
* @type bool
|
|
*/
|
|
public $is_whitespace = true;
|
|
|
|
/**
|
|
* Transparent constructor.
|
|
*
|
|
* @param string $data String comment data.
|
|
* @param int $line
|
|
* @param int $col
|
|
*/
|
|
public function __construct($data, $line = null, $col = null)
|
|
{
|
|
$this->data = $data;
|
|
$this->line = $line;
|
|
$this->col = $col;
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|