API15:JView/setModel
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to add a model to the view. We support a multiple model single view system by which models are referenced by classname. A caveat to the classname referencing is that any classname prepended by JModel will be referenced by the name without JModel, eg. JModelCategory is just Category.
Syntax
& setModel(&$model, $default=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$model | $model The model to add to the view. | |
| $default | false | $default Is this the default model? |
Returns
object The added model
Defined in
libraries/joomla/application/component/view.php
Importing
jimport( 'joomla.application.component.view' );
Source Body
function &setModel( &$model, $default = false ) { $name = strtolower($model->getName()); $this->_models[$name] = &$model; if ($default) { $this->_defaultModel = $name; } return $model; }
[Edit See Also] SeeAlso:JView/setModel
Examples
<CodeExamplesForm />
