API15:JObservable/notify
From Joomla! Documentation
Description
Update each attached observer object and return an array of their return values
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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
function notify()
{
// Iterate through the _observers array
foreach ($this->_observers as $observer) {
$return[] = $observer->update();
}
return $return;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples