API16

API16:JView/assignRef

From Joomla! Documentation

Revision as of 09:59, 30 March 2010 by Doxiki (talk | contribs)

Description

Assign variable for the view (by reference).

[Edit Descripton]

Template:Description:JView/assignRef

Syntax

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

Returns

bool True on success, false on failure.

Defined in

libraries/joomla/application/component/view.php

Importing

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

Source Body

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

<CodeExamplesForm />