API16

JObserver/ construct

From Joomla! Documentation

< API16:JObserver
Revision as of 17:37, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

[Edit Descripton]

Template:Description:JObserver/ construct

Syntax[edit]

__construct(&$subject)
Parameter Name Default Value Description
$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;
}

[Edit See Also] Template:SeeAlso:JObserver/ construct

Examples[edit]

<CodeExamplesForm />