VaultPress::update_options PHP Method

update_options() public method

public update_options ( )
    function update_options()
    {
        // Avoid overwriting the VaultPress option if current blog_id has changed since reading it
        if (get_current_blog_id() !== $this->options_blog_id) {
            return;
        }
        update_option($this->option_name, $this->options);
    }
VaultPress