API16:JView/display
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
Execute and display a template script.
Syntax
display($tpl=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $tpl | null | The name of the template file to parse; automatically searches through the template paths. |
Defined in
libraries/joomla/application/component/view.php
Importing
jimport( 'joomla.application.component.view' );
Source Body
function display($tpl = null) { $result = $this->loadTemplate($tpl); if (JError::isError($result)) { return $result; } echo $result; }
[Edit See Also] SeeAlso:JView/display
Examples
<CodeExamplesForm />
