BcBaserHelper::getSiteUrl PHP Method

getSiteUrl() public method

WEBサイトURLを取得する
public getSiteUrl ( $ssl = false ) : string
return string サイト基本設定のWEBサイト名
    public function getSiteUrl($ssl = false)
    {
        if ($ssl) {
            return Configure::read('BcEnv.sslUrl');
        } else {
            return Configure::read('BcEnv.siteUrl');
        }
    }