JObserver
From Joomla! Documentation
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
JObserver is an abstract class which provides basic functionality to use the Observer/Observable design pattern within a Joomla Application. See also JObservable.
Defined in[edit]
libraries/joomla/base/observer.php
Methods[edit]
Method name | Description |
---|---|
__construct | Constructor |
update | Method to update the state of observable objects |
Importing[edit]
jimport( 'joomla.base.observer' );
Let's say, we want to integrate Error-Handling in our application, but we don't know yet, if we want the error to be display, logged in a file, stored to the database, or all of the above. Our goal is, to keep the object that raises the error independent of the objects that store the error message.
What happened here? We separated the functionality of raising an error of the functionality of handling an error. In the future you can add additional ErrorHandlers, or remove some of the existing handlers, without the need to change any classes at all. Furthermore you can simply change an Errorhandler, without the need to change the MyError class. This greatly increases the reusability of your code.
This example was originally contributed by Batch1211.