Cookbook /
WebsiteIcon
Summary: Add browser website icon (favicon) from config.php
Version: 1.1
Prerequisites: none
Status: Working
Maintainer:
Categories: Layout
Downloads: WebsiteIcon.phpΔ
Questions answered by this recipe
- How can I set a favicon without changing my skin?
- How can I put an icon into the browser?
Description
This makes is easy to set an icon in you config.php file. Just set the variable $FavIcon. This is handy in a farm environment. You can use the include just one in the farmconfig.php file and then in each wiki's local config.php just set the variable $FavIcon. If you set the variable $FavIcon in the farmconfig.php and not in the local wiki's config.php then the local wiki will have a default website icon.
$FavIcon = 'http://gnuzoo.org/momentum/pub/note.ico';
include_once("$FarmD/cookbook/WebsiteIcon.php");
On a farm you might put
SDV($FavIcon, 'http://gnuzoo.org/farm/uploads/ham.ico');
include_once("$FarmD/cookbook/WebsiteIcon.php");
Installation
Copy WebsiteIcon.phpΔ to your cookbook directory
In your config.php enter:
include_once("cookbook/WebsiteIcon.php");
or in your farmconfig.php enter:
include_once("
$FarmD
/cookbook/WebsiteIcon.php");
Notes
Release Notes
- Version: 1.1 Put the variable $FavIcon in single quotes so it is processed after config files
- Version: 1.0 Initial Release
Comments
See Also
- Cookbook /
- ExternalLinksFavicons Display favicons before links to external websites (Beta)
- Favicon Add a Favicon to your website (Mature)
Contributors
User notes? : If you use, used or reviewed this recipe, you can add your name. These statistics appear in the Cookbook listings and will help newcomers browsing through the wiki.