Back to CategoryView class

Method display

public void
display
(mixed $tpl = null)
Execute and display a template script.
Parameters
  • string $tpl The name of the template file to parse; automatically searches through the template paths.
Returns
  • void
Since
  • 3.2
-
  • \Exception
Class: CategoryView
Project: Joomla

Method display - Source code

/**
 * Execute and display a template script.
 *
 * @param   string  $tpl  The name of the template file to parse; automatically searches through the template paths.
 *
 * @return  void
 *
 * @since   3.2
 * @throws  \Exception
 */
public function display($tpl = null)
{
    $this->prepareDocument();
    parent::display($tpl);
}