API15:JDocumentHTML/addCustomTag
From Joomla! Documentation
Description
Adds a custom html string to the head block
Template:Description:JDocumentHTML/addCustomTag
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 );
}
[Edit See Also] Template:SeeAlso:JDocumentHTML/addCustomTag
Examples
<CodeExamplesForm />