API15

Difference between revisions of "JApplication/addCustomHeadTag"

From Joomla! Documentation

< API15:JApplication
(New page: ===Description=== Deprecated, use JDocument->addCustomTag instead (only when document type is HTML). <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Descripti...)
 
m (clean up)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Deprecated, use JDocument-&gt;addCustomTag instead (only when document type is HTML).
 
Deprecated, use JDocument-&gt;addCustomTag instead (only when document type is HTML).
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JApplication/addCustomHeadTag|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JApplication/addCustomHeadTag}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 38: Line 36:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JApplication/addCustomHeadTag|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JApplication/addCustomHeadTag}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=addCustomHeadTag
 
  category=addCustomHeadTag
 
  category=JApplication
 
  category=JApplication
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Latest revision as of 19:15, 24 March 2017

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Deprecated, use JDocument->addCustomTag instead (only when document type is HTML).


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

Syntax[edit]

addCustomHeadTag($html)
Parameter Name Default Value Description
$html Valid HTML

Defined in[edit]

libraries/joomla/application/application.php

Importing[edit]

jimport( 'joomla.application.application' );

Source Body[edit]

function addCustomHeadTag( $html )
{
        $document=& JFactory::getDocument();
        if($document->getType() == 'html') {
                $document->addCustomTag($html);
        }
}


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

Examples[edit]

Code Examples[edit]