alert("Sorry, your nonce did not verify.");'; return false; } //drop ap_appointments table $table_appointments = $wpdb->prefix . "ap_appointments"; $wpdb->query("DROP TABLE `$table_appointments`"); //drop ap_events table $table_events = $wpdb->prefix . "ap_events"; $events = "DROP TABLE `$table_events`"; $wpdb->query($events); //drop ap_services table $table_services = $wpdb->prefix . "ap_services"; $services = "DROP TABLE `$table_services`"; $wpdb->query($services); //drop a service Category $table_service_category = $wpdb->prefix . "ap_service_category"; $service_category = "DROP TABLE `$table_service_category`"; $wpdb->query($service_category); //delete all default calendar options & settings delete_option('apcal_calendar_settings'); //delete notification details delete_option('emailstatus'); delete_option('emailtype'); delete_option('emaildetails'); //delete notification messages delete_option('new_appointment_admin_subject'); delete_option('new_appointment_admin_body'); delete_option('new_appointment_client_subject'); delete_option('new_appointment_client_body'); delete_option('approve_appointment_client_subject'); delete_option('approve_appointment_client_body'); delete_option('cancel_appointment_client_subject'); delete_option('cancel_appointment_client_body'); // DEACTIVATE APPOINTMENT CALENDAR PLUGIN $plugin = "appointment-calendar/appointment-calendar.php"; deactivate_plugins($plugin); ?>