API15:JDocumentHTML/addFavicon
From Joomla! Documentation
Description
Adds a shortcut icon (favicon)
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
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
libraries/joomla/document/html/html.php
Importing
jimport( 'joomla.document.html.html' );
Source Body
function addFavicon($href, $type = 'image/x-icon', $relation = 'shortcut icon')
{
$href = str_replace( '\\', '/', $href );
$this->_links[] = '<link href="'.$href.'" rel="'.$relation.'" type="'.$type.'"';
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples