ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
Comment.php
Go to the documentation of this file.
1
<?php
2
6
class
HTMLPurifier_Token_Comment
extends
HTMLPurifier_Token
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
toNode
() {
34
return
new
HTMLPurifier_Node_Comment
($this->data, $this->line, $this->col);
35
}
36
}
37
38
// vim: et sw=4 sts=4
HTMLPurifier_Node_Comment
Concrete comment node class.
Definition:
Comment.php:6
HTMLPurifier_Token_Comment\__construct
__construct($data, $line=null, $col=null)
Transparent constructor.
Definition:
Comment.php:26
HTMLPurifier_Token_Comment\toNode
toNode()
Definition:
Comment.php:33
HTMLPurifier_Token\$line
$line
Line number node was on in source document.
Definition:
Token.php:12
HTMLPurifier_Token_Comment\$data
$data
Character data within comment.
Definition:
Comment.php:12
HTMLPurifier_Token
Abstract base token class that all others inherit from.
Definition:
Token.php:6
HTMLPurifier_Token\$col
$col
Column of line node was on in source document.
Definition:
Token.php:18
HTMLPurifier_Token_Comment
Concrete comment token class.
Definition:
Comment.php:6
HTMLPurifier_Token_Comment\$is_whitespace
$is_whitespace
bool
Definition:
Comment.php:17
Services
Html
HtmlPurifier
library
HTMLPurifier
Token
Comment.php
Generated on Mon Mar 31 2025 19:00:46 for ILIAS by
1.8.13 (using
Doxyfile
)