![]() |
Joomla CMS
3.9.25 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.9.25 et du framework Joomla Platform intégré
|
Graphe d'héritage de EventImmutable:Fonctions membres publiques | |
| __construct ($name, array $arguments=array()) | |
| offsetSet ($name, $value) | |
| offsetUnset ($name) | |
Fonctions membres publiques hérités de AbstractEvent | |
| __construct ($name, array $arguments=array()) | |
| getName () | |
| getArgument ($name, $default=null) | |
| hasArgument ($name) | |
| getArguments () | |
| isStopped () | |
| count () | |
| serialize () | |
| unserialize ($serialized) | |
| offsetExists ($name) | |
| offsetGet ($name) | |
Attributs privés | |
| $constructed = false | |
Membres hérités additionnels | |
Attributs protégés hérités de AbstractEvent | |
| $name | |
| $arguments | |
| $stopped = false | |
Implementation of an immutable Event. An immutable event cannot be modified after instanciation :
You may want to use this event when you want to ensure that the listeners won't manipulate it.
| __construct | ( | $name, | |
| array | $arguments = array() |
||
| ) |
Constructor.
| string | $name | The event name. |
| array | $arguments | The event arguments. |
| BadMethodCallException |
Références AbstractEvent\$arguments, AbstractEvent\$name, et name.
| offsetSet | ( | $name, | |
| $value | |||
| ) |
Set the value of an event argument.
| string | $name | The argument name. |
| mixed | $value | The argument value. |
| BadMethodCallException |
Références AbstractEvent\$name, et name.
| offsetUnset | ( | $name | ) |
Remove an event argument.
| string | $name | The argument name. |
| BadMethodCallException |
Références AbstractEvent\$name, et name.
|
private |