API16:JObservable/notify
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Update each attached observer object and return an array of their return values
Description:JObservable/notify
Syntax
notify()
Returns
array Array of return values from the observers
Defined in
libraries/joomla/base/observable.php
Importing
jimport( 'joomla.base.observable' );
Source Body
public function notify() { // Iterate through the _observers array foreach ($this->_observers as $observer) { $return[] = $observer->update(); } return $return; }
[Edit See Also] SeeAlso:JObservable/notify
Examples
<CodeExamplesForm />
