API16

Difference between revisions of "JView/assignRef"

From Joomla! Documentation

< API16:JView
(New page: ===Description=== Assign variable for the view (by reference). <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowi...)
 
Line 21: Line 21:
 
|  The name for the reference in the view.  
 
|  The name for the reference in the view.  
 
|-
 
|-
|  
+
| &$val
 
|  
 
|  
 
|  The referenced variable.
 
|  The referenced variable.

Revision as of 04:59, 30 March 2010

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

[Edit Descripton]

Template:Description:JView/assignRef

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

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

Examples[edit]

<CodeExamplesForm />