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
Text.php
Go to the documentation of this file.
1
<?php
2
12
class
HTMLPurifier_Node_Text
extends
HTMLPurifier_Node
13
{
14
20
public
$name
=
'#PCDATA'
;
21
25
public
$data
;
31
public
$is_whitespace
;
32
41
public
function
__construct
(
$data
,
$is_whitespace
,
$line
= null,
$col
= null)
42
{
43
$this->data =
$data
;
44
$this->is_whitespace =
$is_whitespace
;
45
$this->line =
$line
;
46
$this->col =
$col
;
47
}
48
49
public
function
toTokenPair
() {
50
return
array(
new
HTMLPurifier_Token_Text
($this->data, $this->line, $this->col), null);
51
}
52
}
53
54
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
Node
Text.php
Generated on Wed Apr 27 2016 21:01:40 for ILIAS by
1.8.1.2 (using
Doxyfile
)