API16

API16:JDocumentRendererHead/render

From Joomla! Documentation

Description

Renders the document head and returns the results as a string


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

Syntax

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

string The output of the script

Defined in

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

Importing

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

Source Body

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 transcluded page call, red link never existed >

Examples

Code Examples