}
    /**
     * Uninstall
     *
     * @access  private
     */
    public function uninstall()
    {
        // Exit if uninstall not called from WordPress.
        if (!defined('WP_UNINSTALL_PLUGIN')) {
            exit;
        }
        $checker = new Site_Move_Monitor_Checker();
        $checker->reset_stored_data();
    }
    /**
     * Get Admin Capability
     *
     * Returns the capability required to view and manage Site Move Monitor
     * in the admin. By default only administrators with the 'manage_options'
     * capability are allowed.
     *
     * @return  string  Filter capability.
     */
    public function get_admin_capability()
    {
        return apply_filters('site_move_monitor_admin_capability', 'manage_options');
    }
}
Site_Move_Monitor::get_instance();