SiteConfig::sslUrlExists PHP Method

sslUrlExists() public method

SSL用のURLが設定されているかチェックする
public sslUrlExists ( mixed $check ) : boolean
$check mixed
return boolean
    public function sslUrlExists($check)
    {
        $sslOn = $check[key($check)];
        if ($sslOn && empty($this->data['SiteConfig']['ssl_url'])) {
            return false;
        }
        return true;
    }