API15

JApplication/prependMetaTag: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Deprecated, use JDocument->setMetaData instead <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JApplication/prependMetaTag|Edit ...
 
m removing red link to edit, no existant pages
Line 3: Line 3:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JApplication/prependMetaTag|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JApplication/prependMetaTag}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 40: Line 40:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JApplication/prependMetaTag|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JApplication/prependMetaTag}}
<! removed transcluded page call, red link never existed >


===Examples===
===Examples===
Line 55: Line 55:
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Revision as of 13:34, 12 May 2013

Description

Deprecated, use JDocument->setMetaData instead

[<! removed edit link to red link >]

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

Syntax

prependMetaTag($name, $content)
Parameter Name Default Value Description
$name Name of the metadata tag
$content Content of the metadata tag

Defined in

libraries/joomla/application/application.php

Importing

jimport( 'joomla.application.application' );

Source Body

function prependMetaTag( $name, $content )
{
        $this->addMetaTag($name, $content);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

<CodeExamplesForm />