Implements interfaces:
Located in /Inspekt/Cage.php (line 24)
| Class | Description |
|---|---|
| Inspekt_Cage_Session |
the holding property for autofilter config
Don't try to access this. ever. Now that we're safely on PHP5, we'll enforce this with the "protected" keyword.
where we store user-defined methods
Takes an array and wraps it inside an object. If $strict is not set to FALSE, the original array will be destroyed, and the data can only be accessed via the object's accessor methods
This method lets the developer add new accessor methods to a cage object Note that calling these will be quite a bit slower, because we have to use call_user_func()
The dev needs to define a procedural function like so:
Returns the number of elements in $this->_source.
Returns only the alphabetic characters and digits in value.
Returns only the alphabetic characters in value.
Returns only the digits in value. This differs from getInt().
Returns dirname(value).
Returns (int) value.
Returns an iterator for looping through an ArrayObject.
Returns realpath(value).
This returns the value of the given key passed through the HTMLPurifer object, if it is instantiated with Inspekt_Cage::loadHTMLPurifer
Returns value.
Returns ROT13-encoded version
Checks if a key exists
Load the HTMLPurifier library and instantiate the object
Returns basename(value).
Returns value with all tags removed.
Returns whether the $offset exists in $this->_source.
Returns the value at $offset from $this->_source.
Sets the value at the specified $offset to value$ in $this->_source.
Unsets the value in $this->_source at $offset.
Returns value if every character is alphabetic or a digit, FALSE otherwise.
Returns value if every character is alphabetic, FALSE otherwise.
Returns value if it is greater than or equal to $min and less than or equal to $max, FALSE otherwise. If $inc is set to FALSE, then the value must be strictly greater than $min and strictly less than $max.
Returns value if it is a valid credit card number format. The optional second argument allows developers to indicate the type.
Returns $value if it is a valid date, FALSE otherwise. The date is required to be in ISO 8601 format.
Returns value if every character is a digit, FALSE otherwise.
This is just like isInt(), except there is no upper limit.
Returns value if it is a valid email format, FALSE otherwise.
Returns value if it is a valid float value, FALSE otherwise.
Returns value if it is greater than $min, FALSE otherwise.
Returns value if it is a valid hexadecimal format, FALSE otherwise.
Returns value if it is a valid hostname, FALSE otherwise.
Depending upon the value of $allow, Internet domain names, IP addresses, and/or local network names are considered valid. The default is HOST_ALLOW_ALL, which considers all of the above to be valid.
Returns value if it is a valid integer value, FALSE otherwise.
Returns value if it is a valid IP format, FALSE otherwise.
Returns value if it is less than $max, FALSE otherwise.
Returns value if it is one of $allowed, FALSE otherwise.
Returns value if it is a valid phone number format, FALSE otherwise. The optional second argument indicates the country.
Returns value if it matches $pattern, FALSE otherwise. Uses preg_match() for the matching.
Enter description here...
Returns value if it is a valid US ZIP, FALSE otherwise.
Retrieves a value from the _source array. This should NOT be called directly, but needs to be public for use by AccessorAbstract. Maybe a different approach should be considered
Sets a value in the _source array
Documentation generated on Fri, 15 Jan 2010 10:43:51 -0500 by phpDocumentor 1.4.3