PHP 클래스 HTMLPurifier_ErrorStruct, yii

파일 보기 프로젝트 열기: yiisoft/yii

공개 프로퍼티들

프로퍼티 타입 설명
$children 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']
$errors Errors registered for this structure.
$type Type of this struct.
$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')

공개 메소드들

메소드 설명
addError ( integer $severity, string $message )
getChild ( string $type, string $id ) : mixed

메소드 상세

addError() 공개 메소드

public addError ( integer $severity, string $message )
$severity integer
$message string

getChild() 공개 메소드

public getChild ( string $type, string $id ) : mixed
$type string
$id string
리턴 mixed

프로퍼티 상세

$children 공개적으로 프로퍼티

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']
public $children

$errors 공개적으로 프로퍼티

Errors registered for this structure.
public $errors

$type 공개적으로 프로퍼티

Type of this struct.
public $type

$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')
public $value