API15

JView/assignRef

From Joomla! Documentation

< API15:JView
Revision as of 12:27, 25 March 2010 by Doxiki (talk | contribs)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" 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]

Assign variable for the view (by reference).

[Edit Descripton]

Template:Description:JView/assignRef

Syntax[edit]

assignRef($key, &$val)
Parameter Name Default Value Description
$key $key The name for the reference in the view.
&$val &$val The referenced variable.

Returns[edit]

bool True on success, false on failure.

Defined in[edit]

libraries/joomla/application/component/view.php

Importing[edit]

jimport( 'joomla.application.component.view' );

Source Body[edit]

function assignRef($key, &$val)
{
        if (is_string($key) && substr($key, 0, 1) != '_')
        {
                $this->$key =& $val;
                return true;
        }

        return false;
}

[Edit See Also] Template:SeeAlso:JView/assignRef

Examples[edit]

<CodeExamplesForm />