Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($properties=null) | |
__toString () | |
def ($property, $default=null) | |
get ($property, $default=null) | |
getProperties ($public=true) | |
getError ($i=null, $toString=true) | |
getErrors () | |
set ($property, $value=null) | |
setProperties ($properties) | |
setError ($error) |
Attributs protégés | |
$_errors = array() |
Définition à la ligne 22 du fichier object.php.
JObject::__construct | ( | $properties = null | ) |
Class constructor, overridden in descendant classes.
mixed | $properties | Either and associative array or another object to set the initial properties of the object. |
Réimplémentée dans JControllerLegacy, JUser, JModelLegacy, JViewLegacy, JModelAdmin, JModelList, JControllerForm, et JControllerAdmin.
Définition à la ligne 42 du fichier object.php.
JObject::__toString | ( | ) |
Magic method to convert the object to a string gracefully.
Définition à la ligne 58 du fichier object.php.
JObject::def | ( | $property, | |
$default = null |
|||
) |
Sets a default value if not alreay assigned
string | $property | The name of the property. |
mixed | $default | The default value. |
Définition à la ligne 73 du fichier object.php.
JObject::get | ( | $property, | |
$default = null |
|||
) |
Returns a property of the object or the default value if the property is not set.
string | $property | The name of the property. |
mixed | $default | The default value. |
Réimplémentée dans JViewLegacy.
Définition à la ligne 91 du fichier object.php.
JObject::getError | ( | $i = null , |
|
$toString = true |
|||
) |
Get the most recent error message.
integer | $i | Option error index. |
boolean | $toString | Indicates if JError objects should return their error message. |
Définition à la ligne 140 du fichier object.php.
Référencé par JControllerForm\loadhistory(), et JControllerForm\save().
JObject::getErrors | ( | ) |
Return all errors, if any.
Définition à la ligne 176 du fichier object.php.
Référencé par JControllerForm\save().
JObject::getProperties | ( | $public = true | ) |
Returns an associative array of object properties.
boolean | $public | If true, returns only the public properties. |
Définition à la ligne 111 du fichier object.php.
JObject::set | ( | $property, | |
$value = null |
|||
) |
Modifies a property of the object, creating it if it does not already exist.
string | $property | The name of the property. |
mixed | $value | The value of the property to set. |
Définition à la ligne 191 du fichier object.php.
Référencé par JAccessRules\getAllowed().
JObject::setError | ( | $error | ) |
Add an error message.
string | $error | Error message. |
Définition à la ligne 235 du fichier object.php.
JObject::setProperties | ( | $properties | ) |
Set the object properties based on a named array/hash.
mixed | $properties | Either an associative array or another object. |
Définition à la ligne 209 du fichier object.php.
Référencé par JCategoryNode\__construct().
|
protected |
Définition à la ligne 32 du fichier object.php.