WP_Customize_Setting::check_capabilities PHP Method

check_capabilities() final public method

Validate user capabilities whether the theme supports the setting.
Since: 3.4.0
final public check_capabilities ( ) : boolean
return boolean False if theme doesn't support the setting or user can't change setting, otherwise true.
    public final function check_capabilities()
    {
        if ($this->capability && !call_user_func_array('current_user_can', (array) $this->capability)) {
            return false;
        }
        if ($this->theme_supports && !call_user_func_array('current_theme_supports', (array) $this->theme_supports)) {
            return false;
        }
        return true;
    }