JView/assignRef
From Joomla! Documentation
< API16:JView
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]
Assign variable for the view (by reference).
Syntax[edit]
assignRef($key, &$val)
Parameter Name | Default Value | Description |
---|---|---|
$key | The name for the reference in the view. | |
&$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;
}
Examples[edit]
Code Examples[edit]