API15

JDocumentRendererHead/fetchHead

From Joomla! Documentation

< API15:JDocumentRendererHead
Revision as of 17:18, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Generates the head html and return the results as a string <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDocumentRendererHead/fe...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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]

Generates the head html and return the results as a string

[Edit Descripton]

Template:Description:JDocumentRendererHead/fetchHead

Syntax[edit]

fetchHead(&$document)
Parameter Name Default Value Description

Returns[edit]

string

Defined in[edit]

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

Importing[edit]

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

Source Body[edit]

function fetchHead(&$document)
{
        // get line endings
        $lnEnd = $document->_getLineEnd();
        $tab = $document->_getTab();

        $tagEnd = ' />';

        $strHtml = '';

        // Generate base tag (need to happen first)
        $base = $document->getBase();
        if(!empty($base)) {
                $strHtml .= $tab.'<base href="'.$document->getBase().'" />'.$lnEnd;
        }

        // Generate META tags (needs to happen as early as possible in the head)
        foreach ($document->_metaTags as $type => $tag)
        {
                foreach ($tag as $name => $content)
                {
                        if ($type == 'http-equiv') {
                                $strHtml .= $tab.'<meta http-equiv="'.$name.'" content="'.$content.'"'.$tagEnd.$lnEnd;
                        } elseif ($type == 'standard') {
                                $strHtml .= $tab.'<meta name="'.$name.'" content="'.str_replace('"',"'",$content).'"'.$tagEnd.$lnEnd;
                        }
                }
        }

        $strHtml .= $tab.'<meta name="description" content="'.$document->getDescription().'" />'.$lnEnd;
        $strHtml .= $tab.'<meta name="generator" content="'.$document->getGenerator().'" />'.$lnEnd;

        $strHtml .= $tab.'<title>'.htmlspecialchars($document->getTitle()).'</title>'.$lnEnd;

        // Generate link declarations
        foreach ($document->_links as $link) {
                $strHtml .= $tab.$link.$tagEnd.$lnEnd;
        }

        // Generate stylesheet links
        foreach ($document->_styleSheets as $strSrc => $strAttr )
        {
                $strHtml .= $tab . '<link rel="stylesheet" href="'.$strSrc.'" type="'.$strAttr['mime'].'"';
                if (!is_null($strAttr['media'])){
                        $strHtml .= ' media="'.$strAttr['media'].'" ';
                }
                if ($temp = JArrayHelper::toString($strAttr['attribs'])) {
                        $strHtml .= ' '.$temp;;
                }
                $strHtml .= $tagEnd.$lnEnd;
        }

        // Generate stylesheet declarations
        foreach ($document->_style as $type => $content)
        {
                $strHtml .= $tab.'<style type="'.$type.'">'.$lnEnd;

                // This is for full XHTML support.
                if ($document->_mime == 'text/html' ) {
                        $strHtml .= $tab.$tab.'<!--'.$lnEnd;
                } else {
                        $strHtml .= $tab.$tab.'<![CDATA['.$lnEnd;
                }

                $strHtml .= $content . $lnEnd;

                // See above note
                if ($document->_mime == 'text/html' ) {
                        $strHtml .= $tab.$tab.'-->'.$lnEnd;
                } else {
                        $strHtml .= $tab.$tab.']]>'.$lnEnd;
                }
                $strHtml .= $tab.'</style>'.$lnEnd;
        }

        // Generate script file links
        foreach ($document->_scripts as $strSrc => $strType) {
                $strHtml .= $tab.'<script type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
        }

        // Generate script declarations
        foreach ($document->_script as $type => $content)
        {
                $strHtml .= $tab.'<script type="'.$type.'">'.$lnEnd;

                // This is for full XHTML support.
                if ($document->_mime != 'text/html' ) {
                        $strHtml .= $tab.$tab.'<![CDATA['.$lnEnd;
                }

                $strHtml .= $content.$lnEnd;

                // See above note
                if ($document->_mime != 'text/html' ) {
                        $strHtml .= $tab.$tab.'// ]]>'.$lnEnd;
                }
                $strHtml .= $tab.'</script>'.$lnEnd;
        }

        foreach($document->_custom as $custom) {
                $strHtml .= $tab.$custom.$lnEnd;
        }

        return $strHtml;
}

[Edit See Also] Template:SeeAlso:JDocumentRendererHead/fetchHead

Examples[edit]

<CodeExamplesForm />