API16

JDocumentRendererHead/render

From Joomla! Documentation

< API16:JDocumentRendererHead
Revision as of 00:02, 13 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Renders the document head and returns the results as a string

[<! removed edit link to red link >]

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

Syntax[edit]

render($head=null, $params=array(), $content=null)
Parameter Name Default Value Description
$head null $name (unused)
$params array() $params Associative array of values
$content null

Returns[edit]

string The output of the script

Defined in[edit]

libraries/joomla/document/html/renderer/head.php

Importing[edit]

jimport( 'joomla.document.html.renderer.head' );

Source Body[edit]

public function render($head = null, $params = array(), $content = null)
{
        ob_start();
        echo $this->fetchHead($this->_doc);
        $buffer = ob_get_contents();
        ob_end_clean();

        return $buffer;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />