API15

JView/assignRef

From Joomla! Documentation

< API15:JView
Revision as of 13:58, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

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).

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

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

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />