API16

API16:JView/assignRef

From Joomla! Documentation

Description

Assign variable for the view (by reference).



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



Examples

Code Examples