Journal::getLocalizedFavicon PHP Method

getLocalizedFavicon() public method

Get localized favicon
public getLocalizedFavicon ( ) : string
return string
    function getLocalizedFavicon()
    {
        $faviconArray = $this->getSetting('favicon');
        foreach (array(AppLocale::getLocale(), AppLocale::getPrimaryLocale()) as $locale) {
            if (isset($faviconArray[$locale])) {
                return $faviconArray[$locale];
            }
        }
        return null;
    }