BcBaserHelper::getSiteName PHP Method

getSiteName() public method

WEBサイト名を取得する
public getSiteName ( ) : string
return string サイト基本設定のWEBサイト名
    public function getSiteName()
    {
        if (!empty($this->_View->viewVars['siteConfig']['formal_name'])) {
            return $this->_View->viewVars['siteConfig']['formal_name'];
        }
        if (!empty($this->siteConfig['formal_name'])) {
            return $this->siteConfig['formal_name'];
        }
        return '';
    }