API16

JObserver/ construct

From Joomla! Documentation

< API16:JObserver

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.

Description[edit]

Constructor



Syntax[edit]

__construct(&$subject)
Parameter Name Default Value Description
&$subject $subject The object to observe.

Returns[edit]

void

Defined in[edit]

libraries/joomla/base/observer.php

Importing[edit]

jimport( 'joomla.base.observer' );

Source Body[edit]

function __construct(&$subject)
{
        // Register the observer ($this) so we can be notified
        $subject->attach($this);

        // Set the subject to observe
        $this->_subject = &$subject;
}



Examples[edit]

Code Examples[edit]