API16

Difference between revisions of "JDocumentHTML/addFavicon"

From Joomla! Documentation

< API16:JDocumentHTML
(New page: ===Description=== Adds a shortcut icon (favicon) <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]<...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Adds a shortcut icon (favicon)
 
Adds a shortcut icon (favicon)
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JDocumentHTML/addFavicon|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JDocumentHTML/addFavicon}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 44: Line 42:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JDocumentHTML/addFavicon|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JDocumentHTML/addFavicon}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=addFavicon
 
  category=addFavicon
 
  category=JDocumentHTML
 
  category=JDocumentHTML
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:32, 24 March 2017

The "API16" 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]

Adds a shortcut icon (favicon)


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

Syntax[edit]

addFavicon($href, $type= 'image/x-icon', $relation= 'shortcut icon')
Parameter Name Default Value Description
$href $href The link that is being related.
$type 'image/x-icon' $type File type
$relation 'shortcut icon' $relation Relation of link public

Defined in[edit]

libraries/joomla/document/html/html.php

Importing[edit]

jimport( 'joomla.document.html.html' );

Source Body[edit]

function addFavicon($href, $type = 'image/x-icon', $relation = 'shortcut icon')
{
        $href = str_replace('\\', '/', $href);
        $this->_links[] = '<link href="'.$href.'" rel="'.$relation.'" type="'.$type.'"';
}


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

Examples[edit]

Code Examples[edit]