API15

JApplication/render: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 35: Line 35:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=render
  category=render
  category=JApplication
  category=JApplication
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:17, 25 March 2017

Description

Render the application.


<! removed transcluded page call, red link never existed >

Syntax

render()


Defined in

libraries/joomla/application/application.php

Importing

jimport( 'joomla.application.application' );

Source Body

function render()
{
        $params = array(
                'template'      => $this->getTemplate(),
                'file'          => 'index.php',
                'directory'     => JPATH_THEMES
        );

        $document =& JFactory::getDocument();
        $data = $document->render($this->getCfg('caching'), $params );
        JResponse::setBody($data);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples