API15:JDocumentHTML/setHeadData
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Set the html document head data
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setHeadData($data)
| Parameter Name | Default Value | Description |
|---|---|---|
| $data | $data The document head data in array form |
Defined in
libraries/joomla/document/html/html.php
Importing
jimport( 'joomla.document.html.html' );
Source Body
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
<CodeExamplesForm />
