JApplication/render: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Render the application.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</... |
m preparing for archive only |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
Render the application. | Render the application. | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 19: | Line 17: | ||
===Source Body=== | ===Source Body=== | ||
<source lang="php"> | <source lang="php"> | ||
function render() | |||
{ | { | ||
$params = array( | $params = array( | ||
'template' => $this->getTemplate(), | 'template' => $this->getTemplate(), | ||
'file' => 'index.php', | 'file' => 'index.php', | ||
'directory' => JPATH_THEMES | 'directory' => JPATH_THEMES | ||
); | ); | ||
$document =& JFactory::getDocument(); | |||
$document = &JFactory::getDocument(); | $data = $document->render($this->getCfg('caching'), $params ); | ||
$ | JResponse::setBody($data); | ||
$ | |||
} | } | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | |||
< | |||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=render | category=render | ||
category=JApplication | category=JApplication | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API15]] | |||
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