Class HTMLPurifier_ErrorStruct
Records errors for particular segments of an HTML document such as tokens, attributes or CSS properties. They can contain error structs (which apply to components of what they represent), but their main purpose is to hold errors applying to whatever struct is being used.
public
mixed
|
|
public
|
integer |
TOKEN
|
0 |
#
Possible values for $children first-key. Note that top-level structures are automatically token-level. |
integer |
ATTR
|
1 |
|
integer |
CSSPROP
|
2 |
public
mixed
|
$type |
|
#
Type of this struct. |
public
mixed
|
$value |
|
#
Value of the struct we are recording errors for. There are various values for
this: |
public
array
|
$errors | array() |
#
Errors registered for this structure. |
public
array
|
$children | array() |
#
Child ErrorStructs that are from this structure. For example, a TOKEN ErrorStruct would contain ATTR ErrorStructs. This is a multi-dimensional array in structure: [TYPE]['identifier'] |