API16:JDocumentHTML/addFavicon
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Adds a shortcut icon (favicon)
Description:JDocumentHTML/addFavicon
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.'"'; }
[Edit See Also] SeeAlso:JDocumentHTML/addFavicon
Examples
<CodeExamplesForm />
