Cheetah
Public Member Functions | Public Attributes | List of all members
HTMLPurifier_ErrorStruct Class Reference

Public Member Functions

 getChild ($type, $id)
 
 addError ($severity, $message)
 

Public Attributes

const TOKEN = 0
 
const ATTR = 1
 
const CSSPROP = 2
 
 $type
 
 $value
 
 $errors = array()
 
 $children = array()
 

Detailed Description

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.

Definition at line 5032 of file HTMLPurifier.standalone.php.

Member Function Documentation

◆ addError()

HTMLPurifier_ErrorStruct::addError (   $severity,
  $message 
)
Parameters
int$severity
string$message

Definition at line 5091 of file HTMLPurifier.standalone.php.

◆ getChild()

HTMLPurifier_ErrorStruct::getChild (   $type,
  $id 
)
Parameters
string$type
string$id
Returns
mixed

Definition at line 5078 of file HTMLPurifier.standalone.php.

Member Data Documentation

◆ $children

HTMLPurifier_ErrorStruct::$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'] @type array

Definition at line 5071 of file HTMLPurifier.standalone.php.

◆ $errors

HTMLPurifier_ErrorStruct::$errors = array()

Errors registered for this structure. @type array

Definition at line 5063 of file HTMLPurifier.standalone.php.

◆ $type

HTMLPurifier_ErrorStruct::$type

Type of this struct. @type string

Definition at line 5047 of file HTMLPurifier.standalone.php.

◆ $value

HTMLPurifier_ErrorStruct::$value

Value of the struct we are recording errors for. There are various values for this:

  • TOKEN: Instance of HTMLPurifier_Token
  • ATTR: array('attr-name', 'value')
  • CSSPROP: array('prop-name', 'value') @type mixed

Definition at line 5057 of file HTMLPurifier.standalone.php.

◆ ATTR

const HTMLPurifier_ErrorStruct::ATTR = 1

Definition at line 5040 of file HTMLPurifier.standalone.php.

◆ CSSPROP

const HTMLPurifier_ErrorStruct::CSSPROP = 2

Definition at line 5041 of file HTMLPurifier.standalone.php.

◆ TOKEN

const HTMLPurifier_ErrorStruct::TOKEN = 0

Possible values for $children first-key. Note that top-level structures are automatically token-level.

Definition at line 5039 of file HTMLPurifier.standalone.php.


The documentation for this class was generated from the following file: