root/afridex/plugins/Flutter/purifier_lib/HTMLPurifier/Token/Comment.php @ 22

Revision 21, 432 bytes (checked in by admin, 18 years ago)
Line 
1<?php
2
3/**
4 * Concrete comment token class. Generally will be ignored.
5 */
6class HTMLPurifier_Token_Comment extends HTMLPurifier_Token
7{
8    public $data; /**< Character data within comment. */
9    /**
10     * Transparent constructor.
11     *
12     * @param $data String comment data.
13     */
14    public function __construct($data, $line = null) {
15        $this->data = $data;
16        $this->line = $line;
17    }
18}
19
Note: See TracBrowser for help on using the browser.