\JInputInspector
Inspector class for the JInput library.
Synopsis
class JInputInspector
extends JInput
{
- // members
- public $options;
- public $filter;
- public $data;
- public $inputs;
- public $registered;
- // Inherited members from JInput
- protected $options;
- protected JFilterInput $filter;
- protected $data;
- protected $inputs;
- // methods
- public static void register()
- // Inherited methods from JInput
- public void __construct()
- public JInput __get()
- public integer count()
- public mixed get()
- public mixed getArray()
- public void set()
- public void def()
- public mixed __call()
- public string getMethod()
- public string serialize()
- public JInput unserialize()
- protected void loadAllInputs()
Hierarchy
Extends
Members
protected
- $data
—
array
Input data. - $filter
—
JFilterInput
Filter object to use. - $inputs
—
array
Input objects - $options
—
array
Options array for the JInput instance.
public
- $data
- $filter
- $inputs
- $options
- $registered
Methods
public
- register() — Test...
Inherited from JInput
protected
- loadAllInputs() — Method to load all of the global inputs.
public
- __call() — Magic method to get filtered input data.
- __get() — Magic method to get an input object
- count() — Get the number of variables.
- def() — Define a value. The value will only be set if there's no value for the name or if it is null.
- get() — Gets a value from the input data.
- getArray() — Gets an array of values from the request.
- getMethod() — Gets the request method.
- serialize() — Method to serialize the input.
- set() — Sets a value
- unserialize() — Method to unserialize the input.