Liste de tous les membres
Description détaillée
Définition à la ligne 19 du fichier event.php.
Documentation des constructeurs et destructeur
JEvent::__construct |
( |
& |
$subject | ) |
|
Constructor
- Paramètres:
-
object | &$subject | The object to observe. |
- Depuis:
- 11.3
Définition à la ligne 36 du fichier event.php.
{
$subject->attach($this);
$this->_subject = &$subject;
}
Documentation des fonctions membres
JEvent::update |
( |
& |
$args | ) |
|
Method to trigger events. The method first generates the even from the argument array. Then it unsets the argument since the argument has no bearing on the event handler. If the method exists it is called and returns its return value. If it does not exist it returns null.
- Paramètres:
-
- Renvoie:
- mixed Routine return value
- Depuis:
- 11.1
Définition à la ligne 58 du fichier event.php.
{
$event = $args['event'];
unset($args['event']);
if (method_exists($this, $event))
{
return call_user_func_array(array($this, $event), $args);
}
else
{
return null;
}
}
Documentation des données membres
La documentation de cette classe a été générée à partir du fichier suivant :