Joomla CMS
3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
|
Fonctions membres publiques | |
__construct (array $source=null, array $options=array()) | |
get ($name, $default=null, $filter='cmd') | |
set ($name, $value) | |
Fonctions membres publiques hérités de JInput | |
__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 | |
decodeData (array $data) | |
Fonctions membres protégées hérités de JInput | |
loadAllInputs () | |
Attributs protégés | |
$decodedData = array() | |
Attributs protégés hérités de JInput | |
$options = array() | |
$filter = null | |
$data = array() | |
$inputs = array() | |
Joomla! Input Files Class
__construct | ( | array | $source = null , |
array | $options = array() |
||
) |
The class constructor.
array | $source | The source argument is ignored. $_FILES is always used. |
array | $options | An optional array of configuration options: filter : a custom JFilterInput object. |
Références $options.
|
protected |
Method to decode a data array.
array | $data | The data array to decode. |
Références $data.
get | ( | $name, | |
$default = null , |
|||
$filter = 'cmd' |
|||
) |
Gets a value from the input data.
string | $name | The name of the input property (usually the name of the files INPUT tag) to get. |
mixed | $default | The default value to return if the named property does not exist. |
string | $filter | The filter to apply to the value. |
set | ( | $name, | |
$value | |||
) |
Sets a value.
string | $name | The name of the input property to set. |
mixed | $value | The value to assign to the input property. |
|
protected |