API15

JDocumentHTML/setHeadData: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 50: Line 50:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=setHeadData
  category=setHeadData
  category=JDocumentHTML
  category=JDocumentHTML
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:31, 25 March 2017

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

Code Examples