API - XOOPS 2.5.11 Beta 2
By monxoops.fr
|
Public Member Functions | |
parse ($var, $type, $allow_null=false) | |
Static Public Member Functions | |
static | getTypeName ($type) |
Data Fields | |
const | C_STRING = 1 |
const | ISTRING = 2 |
const | TEXT = 3 |
const | ITEXT = 4 |
const | C_INT = 5 |
const | C_FLOAT = 6 |
const | C_BOOL = 7 |
const | LOOKUP = 8 |
const | ALIST = 9 |
const | HASH = 10 |
const | C_MIXED = 11 |
Static Public Attributes | |
static | $types |
static | $stringTypes |
Protected Member Functions | |
parseImplementation ($var, $type, $allow_null) | |
error ($msg) | |
errorInconsistent ($class, $type) | |
errorGeneric ($var, $type) | |
Parses string representations into their corresponding native PHP variable type. The base implementation does a simple type-check.
|
protected |
Throws an exception.
HTMLPurifier_VarParserException |
|
protected |
Generic error for if a type didn't work.
mixed | $var | |
int | $type |
|
protected |
Throws an inconsistency exception.
string | $class | |
int | $type |
HTMLPurifier_Exception |
|
static |
int | $type |
|
final |
Validate a variable according to type. It may return NULL as a valid type if $allow_null is true.
mixed | $var | Variable to validate |
int | $type | Type of variable, see HTMLPurifier_VarParser->types |
bool | $allow_null | Whether or not to permit null as a value |
HTMLPurifier_VarParserException |
|
protected |
Actually implements the parsing. Base implementation does not do anything to $var. Subclasses should overload this!
mixed | $var | |
int | $type | |
bool | $allow_null |
Reimplemented in HTMLPurifier_VarParser_Flexible, and HTMLPurifier_VarParser_Native.
|
static |
Lookup table of types that are string, and can have aliases or allowed value lists.
|
static |
Lookup table of allowed types. Mainly for backwards compatibility, but also convenient for transforming string type names to the integer constants.
const ALIST = 9 |
const C_BOOL = 7 |
const C_FLOAT = 6 |
const C_INT = 5 |
const C_MIXED = 11 |
const C_STRING = 1 |
const HASH = 10 |
const ISTRING = 2 |
const ITEXT = 4 |
const LOOKUP = 8 |
const TEXT = 3 |