Amazon_S3_And_CloudFront::show_deprecated_domain_setting PHP Method

show_deprecated_domain_setting() public method

Show the deprecated Domain option setting?
public show_deprecated_domain_setting ( null | string $domain = null ) : boolean
$domain null | string
return boolean
    public function show_deprecated_domain_setting($domain = null)
    {
        if (is_null($domain)) {
            $domain = $this->get_setting('domain');
        }
        if (!in_array($domain, array('path', 'cloudfront'))) {
            return true;
        }
        return apply_filters('as3cf_show_deprecated_domain_setting', false);
    }
Amazon_S3_And_CloudFront