API15:JDocumentHTML/addCustomTag
From Joomla! Documentation
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