\JInputCookie
Joomla! Input Cookie Class
Synopsis
class JInputCookie
extends JInput
{
- // Inherited members from JInput
- protected $options;
- protected JFilterInput $filter;
- protected $data;
- protected $inputs;
- // methods
- public void __construct()
- public void set()
- // 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.
Methods
public
- __construct() — Constructor.
- set() — Sets a value
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.