ILIAS
Release_5_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
Comment.php
Go to the documentation of this file.
1
<?php
2
6
class
HTMLPurifier_Node_Comment
extends
HTMLPurifier_Node
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
}
Services
Html
HtmlPurifier
library
HTMLPurifier
Node
Comment.php
Generated on Wed Apr 27 2016 21:01:41 for ILIAS by
1.8.1.2 (using
Doxyfile
)