mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
20 lines
413 B
PHP
20 lines
413 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Concrete comment token class. Generally will be ignored.
|
||
|
*/
|
||
|
class HTMLPurifier_Token_Comment extends HTMLPurifier_Token
|
||
|
{
|
||
|
public $data; /**< Character data within comment. */
|
||
|
/**
|
||
|
* Transparent constructor.
|
||
|
*
|
||
|
* @param $data String comment data.
|
||
|
*/
|
||
|
public function __construct($data, $line = null) {
|
||
|
$this->data = $data;
|
||
|
$this->line = $line;
|
||
|
}
|
||
|
}
|
||
|
|