API15:JApplication/addCustomHeadTag
From Joomla! Documentation
Description
Deprecated, use JDocument->addCustomTag instead (only when document type is HTML).
<! removed transcluded page call, red link never existed >
Syntax
addCustomHeadTag($html)
| Parameter Name | Default Value | Description |
|---|---|---|
| $html | Valid HTML |
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
function addCustomHeadTag( $html )
{
$document=& JFactory::getDocument();
if($document->getType() == 'html') {
$document->addCustomTag($html);
}
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples