Source for file event.php
Documentation is available at event.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* @package Joomla.Platform
* Event object to observe.
* @param object &$subject The object to observe.
// Register the observer ($this) so we can be notified
// Set the subject to observe
* 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
* @param array &$args Arguments
* @return mixed Routine return value
public function update(&$args)
// First let's get the event from the argument array. Next we will unset the
// event argument as it has no bearing on the method to handle the event.
* If the method to handle an event exists, call it and return its return
* value. If it does not exist, return null.
Documentation generated on Tue, 19 Nov 2013 15:02:39 +0100 by phpDocumentor 1.4.3