API16

JDocumentRenderer/render: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Renders a script and returns the results as a string <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDocumentRenderer/render|Edit ...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Renders a script and returns the results as a string
Renders a script and returns the results as a string


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JDocumentRenderer/render|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JDocumentRenderer/render}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 46: Line 44:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JDocumentRenderer/render|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JDocumentRenderer/render}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=render
  category=render
  category=JDocumentRenderer
  category=JDocumentRenderer
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:33, 25 March 2017

Description

Renders a script and returns the results as a string


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

Syntax

render($name, $params=array(), $content=null)
Parameter Name Default Value Description
$name $name The name of the element to render
$params array() $array Array of values
$content null $content Override the output of the renderer

Returns

string The output of the script

Defined in

libraries/joomla/document/renderer.php

Importing

jimport( 'joomla.document.renderer' );

Source Body

function render($name, $params = array(), $content = null)
{

}


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

Examples

Code Examples