XOOPS 2.5.6
Final
Main Page
Related Pages
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Pages
ErrorStruct.php
Go to the documentation of this file.
1
<?php
2
9
class
HTMLPurifier_ErrorStruct
10
{
11
16
const
TOKEN
= 0;
17
const
ATTR
= 1;
18
const
CSSPROP
= 2;
19
23
public
$type
;
24
32
public
$value
;
33
37
public
$errors
= array();
38
44
public
$children
= array();
45
46
public
function
getChild
(
$type
, $id) {
47
if
(!isset($this->children[
$type
][$id])) {
48
$this->children[
$type
][$id] =
new
HTMLPurifier_ErrorStruct
();
49
$this->children[
$type
][$id]->type =
$type
;
50
}
51
return
$this->children[
$type
][$id];
52
}
53
54
public
function
addError
($severity, $message) {
55
$this->errors[] = array($severity, $message);
56
}
57
58
}
59
60
// vim: et sw=4 sts=4
L:
0xoops
xoops-2.5.6
htdocs
xoops_lib
modules
protector
library
HTMLPurifier
ErrorStruct.php
Generated on Fri May 10 2013 01:04:30 for XOOPS 2.5.6 by
1.8.3.1