/** * Get HTML code for meta icons. * @return HTML string to insert into HEAD section */ function getMetaIcons() { $sResult = parent::getMetaIcons(); $sFavicon = $this->_oTemplate->getIconUrl('favicon.ico'); if (!empty($sFavicon)) { $sResult .= '<link rel="shortcut icon" type="image/x-icon" href="' . $sFavicon . '" />'; } return $sResult; }