function favicon_menu in Favicon 5
Same name and namespace in other branches
- 8 favicon.module \favicon_menu()
- 6 favicon.module \favicon_menu()
- 7.2 favicon.module \favicon_menu()
- 7 favicon.module \favicon_menu()
Implementation of hook_menu().
File
- ./
favicon.module, line 6
Code
function favicon_menu($may_cache) {
$items = array();
if ($may_cache) {
// Override favicon.ico to forward to the theme's shortcut icon.
$items[] = array(
'path' => 'favicon.ico',
'callback' => 'favicon_shortcut_icon',
'access' => TRUE,
'type' => MENU_CALLBACK,
);
}
return $items;
}