API16:JView/display
From Joomla! Documentation
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;
}
Examples
Code Examples