API15:JDocumentHTML/getHeadData
From Joomla! Documentation
Description
Get the html document head data
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
getHeadData()
Returns
array The document head data in array form
Defined in
libraries/joomla/document/html/html.php
Importing
jimport( 'joomla.document.html.html' );
Source Body
function getHeadData()
{
$data = array();
$data['title'] = $this->title;
$data['description']= $this->description;
$data['link'] = $this->link;
$data['metaTags'] = $this->_metaTags;
$data['links'] = $this->_links;
$data['styleSheets']= $this->_styleSheets;
$data['style'] = $this->_style;
$data['scripts'] = $this->_scripts;
$data['script'] = $this->_script;
$data['custom'] = $this->_custom;
return $data;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples