API16

JDocumentHTML/setHeadData

From Joomla! Documentation

< API16:JDocumentHTML
Revision as of 22:07, 12 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]

Set the html document head data

[<! removed edit link to red link >]

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

Syntax[edit]

setHeadData($data)
Parameter Name Default Value Description
$data $data The document head data in array form

Defined in[edit]

libraries/joomla/document/html/html.php

Importing[edit]

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

Source Body[edit]

function setHeadData($data)
{
        $this->title            = (isset($data['title'])) ? $data['title'] : $this->title;
        $this->description      = (isset($data['description'])) ? $data['description'] : $this->description;
        $this->link                     = (isset($data['link'])) ? $data['link'] : $this->link;
        $this->_metaTags        = (isset($data['metaTags'])) ? $data['metaTags'] : $this->_metaTags;
        $this->_links           = (isset($data['links'])) ? $data['links'] : $this->_links;
        $this->_styleSheets     = (isset($data['styleSheets'])) ? $data['styleSheets'] : $this->_styleSheets;
        $this->_style           = (isset($data['style'])) ? $data['style'] : $this->_style;
        $this->_scripts         = (isset($data['scripts'])) ? $data['scripts'] : $this->_scripts;
        $this->_script          = (isset($data['script'])) ? $data['script'] : $this->_script;
        $this->_custom          = (isset($data['custom'])) ? $data['custom'] : $this->_custom;
}

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

Examples[edit]

<CodeExamplesForm />