Carbon_Fields\Container\Comment_Meta_Container::is_valid_save PHP Method

is_valid_save() public method

Checks whether the current request is valid
public is_valid_save ( ) : boolean
return boolean
    public function is_valid_save()
    {
        if (!isset($_REQUEST[$this->get_nonce_name()]) || !wp_verify_nonce($_REQUEST[$this->get_nonce_name()], $this->get_nonce_name())) {
            // Input var okay.
            return false;
        }
        return true;
    }