XOOPS 2.5.6
Final
|
Public Member Functions | |
parse ($var, $type, $allow_null=false) | |
Static Public Member Functions | |
static | getTypeName ($type) |
Public Attributes | |
const | ALIST = 9 |
const | BOOL = 7 |
const | FLOAT = 6 |
const | HASH = 10 |
const | INT = 5 |
const | ISTRING = 2 |
const | ITEXT = 4 |
const | LOOKUP = 8 |
const | MIXED = 11 |
const | STRING = 1 |
const | TEXT = 3 |
Static Public Attributes | |
static | $stringTypes |
static | $types |
Protected Member Functions | |
error ($msg) | |
errorGeneric ($var, $type) | |
errorInconsistent ($class, $type) | |
parseImplementation ($var, $type, $allow_null) | |
Parses string representations into their corresponding native PHP variable type. The base implementation does a simple type-check.
Definition at line 7 of file VarParser.php.
|
protected |
Throws an exception.
Definition at line 120 of file VarParser.php.
References $msg.
Referenced by errorGeneric(), and parse().
|
protected |
Generic error for if a type didn't work.
Definition at line 137 of file VarParser.php.
References $type, $var, error(), and getTypeName().
Referenced by parse(), and HTMLPurifier_VarParser_Flexible\parseImplementation().
|
protected |
Throws an inconsistency exception.
Definition at line 130 of file VarParser.php.
References $type, and getTypeName().
Referenced by parse(), and HTMLPurifier_VarParser_Flexible\parseImplementation().
|
static |
Definition at line 142 of file VarParser.php.
Referenced by errorGeneric(), errorInconsistent(), and HTMLPurifier_Config\set().
|
final |
Validate a variable according to type. Throws HTMLPurifier_VarParserException if invalid. It may return NULL as a valid type if $allow_null is true.
$var | Variable to validate |
$type | Type of variable, see HTMLPurifier_VarParser->types |
$allow_null | Whether or not to permit null as a value |
Definition at line 61 of file VarParser.php.
References $type, $types, $var, error(), errorGeneric(), errorInconsistent(), and parseImplementation().
|
protected |
Actually implements the parsing. Base implementation is to not do anything to $var. Subclasses should overload this!
Definition at line 113 of file VarParser.php.
References $var.
Referenced by parse().
|
static |
Lookup table of types that are string, and can have aliases or allowed value lists.
Definition at line 44 of file VarParser.php.
Referenced by HTMLPurifier_ConfigSchema_Validator\validateDirective().
|
static |
Lookup table of allowed types. Mainly for backwards compatibility, but also convenient for transforming string type names to the integer constants.
Definition at line 26 of file VarParser.php.
Referenced by HTMLPurifier_ConfigSchema\add(), getTypeName(), parse(), and HTMLPurifier_ConfigSchema_Validator\validateDirective().
const HTMLPurifier_VarParser::ALIST = 9 |
Definition at line 18 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm_default\render().
const HTMLPurifier_VarParser::BOOL = 7 |
Definition at line 16 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm\__construct().
const HTMLPurifier_VarParser::FLOAT = 6 |
Definition at line 15 of file VarParser.php.
const HTMLPurifier_VarParser::HASH = 10 |
Definition at line 19 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm_default\render().
const HTMLPurifier_VarParser::INT = 5 |
Definition at line 14 of file VarParser.php.
const HTMLPurifier_VarParser::ISTRING = 2 |
Definition at line 11 of file VarParser.php.
const HTMLPurifier_VarParser::ITEXT = 4 |
Definition at line 13 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm_default\render().
const HTMLPurifier_VarParser::LOOKUP = 8 |
Definition at line 17 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm_default\render().
const HTMLPurifier_VarParser::MIXED = 11 |
Definition at line 20 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm_default\render().
const HTMLPurifier_VarParser::STRING = 1 |
Definition at line 10 of file VarParser.php.
const HTMLPurifier_VarParser::TEXT = 3 |
Definition at line 12 of file VarParser.php.
Referenced by HTMLPurifier_Printer_ConfigForm_default\render().