API16

API16:JObservable/notify

From Joomla! Documentation

Description

Update each attached observer object and return an array of their return values



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;
}



Examples

Code Examples