Additional Info |
---|
Type
|
Package ID
ccbtimewiz:favicon
|
First Created
February 25, 2007, 12:11:32 PM
|
Last Updated
July 24, 2010, 03:05:13 AM
|
'description' => $txt['header_logo_url_desc'],
'type' => 'text',
),
array(
'id' => 'header_favicon_url',
'label' => $txt['header_favicon_url'],
'description' => $txt['header_favicon_url_desc'],
'type' => 'text',
),
<title>', $context['page_title_html_safe'], '</title>';
// Favicon Edits
$link_rel = '';
if (!empty($settings['header_favicon_url']))
{
if(preg_match('~http://(?:.*?)\.(png|ico|gif)(?:\?(?:.*?)|)~i', $settings['header_favicon_url'], $type))
{
// Append to html headers
$link_rel .= '
<link rel="'. (!empty($context['browser']['is_ie']) ? 'shortcut icon' : 'icon' ) .'" href="'. $settings['header_favicon_url'] . '" type="'. (($type[1] == 'ico') ? 'image/vnd.microsoft.icon' : 'image/'.$type[1] ) .'" />';
unset($type);
}
}
echo $link_rel;