Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($source=null, array $options=array()) | |
__get ($name) | |
count () | |
get ($name, $default=null, $filter= 'cmd') | |
getArray (array $vars=array(), $datasource=null) | |
set ($name, $value) | |
def ($name, $value) | |
__call ($name, $arguments) | |
getMethod () | |
serialize () | |
unserialize ($input) |
Fonctions membres protégées | |
loadAllInputs () |
Attributs protégés | |
$options = array() | |
$filter = null | |
$data = array() | |
$inputs = array() |
JInput::__construct | ( | $source = null , |
|
array | $options = array() |
||
) |
Constructor.
array | $source | Source data (Optional, default is $_REQUEST) |
array | $options | Array of configuration parameters (Optional) |
Définition à la ligne 83 du fichier input.php.
Références JFilterInput\getInstance().
JInput::__call | ( | $name, | |
$arguments | |||
) |
Magic method to get filtered input data.
string | $name | Name of the filter type prefixed with 'get'. |
array | $arguments | [0] The name of the variable [1] The default value. |
JInput::__get | ( | $name | ) |
Magic method to get an input object
mixed | $name | Name of the input object to retrieve. |
Définition à la ligne 116 du fichier input.php.
Références $GLOBALS.
JInput::count | ( | ) |
JInput::def | ( | $name, | |
$value | |||
) |
Define a value. The value will only be set if there's no value for the name or if it is null.
string | $name | Name of the value to define. |
mixed | $value | Value to assign to the input. |
Définition à la ligne 257 du fichier input.php.
JInput::get | ( | $name, | |
$default = null , |
|||
$filter = 'cmd' |
|||
) |
Gets a value from the input data.
string | $name | Name of the value to get. |
mixed | $default | Default value to return if variable does not exist. |
string | $filter | Filter to apply to the value. |
Réimplémentée dans JInputFiles.
Définition à la ligne 168 du fichier input.php.
JInput::getArray | ( | array | $vars = array() , |
$datasource = null |
|||
) |
Gets an array of values from the request.
array | $vars | Associative array of keys and filter types to apply. If empty and datasource is null, all the input data will be returned but filtered using the default case in JFilterInput::clean. |
mixed | $datasource | Array to retrieve data from, or null |
Définition à la ligne 190 du fichier input.php.
JInput::getMethod | ( | ) |
|
protected |
Method to load all of the global inputs.
Définition à la ligne 361 du fichier input.php.
Références $GLOBALS.
JInput::serialize | ( | ) |
Method to serialize the input.
Réimplémentée dans JInputCli.
Définition à la ligne 315 du fichier input.php.
JInput::set | ( | $name, | |
$value | |||
) |
Sets a value
string | $name | Name of the value to set. |
mixed | $value | Value to assign to the input. |
Réimplémentée dans JInputFiles.
Définition à la ligne 242 du fichier input.php.
JInput::unserialize | ( | $input | ) |
Method to unserialize the input.
string | $input | The serialized input. |
Réimplémentée dans JInputCli.
Définition à la ligne 338 du fichier input.php.
Références JFilterInput\getInstance().