API15:JApplication/addCustomHeadTag/ja
出典: Joomla! ドキュメンテーション
目次 |
Description
Deprecated, use JDocument->addCustomTag instead (only when document type is HTML).
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); } }
Examples
<CodeExamplesForm />
