API15

JDocumentHTML/addCustomTag: Difference between revisions

From Joomla! Documentation

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


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

Latest revision as of 00:31, 25 March 2017

Description

Adds a custom html string to the head block

[<! removed edit link to red link >]

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

Syntax

addCustomTag($html)
Parameter Name Default Value Description
$html The html to add to the head public

Returns

void

Defined in

libraries/joomla/document/html/html.php

Importing

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

Source Body

function addCustomTag( $html )
{
        $this->_custom[] = trim( $html );
}

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

Examples

Code Examples