PluginProbe
Bookit — Booking & Appointment Calendar / 1.2
Bookit — Booking & Appointment Calendar v1.2
2.6.0.4 2.6.0.3 2.6.0.2 2.6.0.1 2.6.0 trunk 1.2 1.2.2 1.2.3 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 All 61 releases
bookit / db / tables.php

tables.php in Bookit — Booking & Appointment Calendar 1.2, at db/tables.php

12 lines 365 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 require_once STM_BOOKIT_CALENDAR_PATH . '/db/_names.php';
3
4 if(is_admin()) {
5 require_once STM_BOOKIT_CALENDAR_PATH . '/db/appointments.table.php';
6 }
7
8 function stm_bookit_delete_appointment($appointment_id) {
9 global $wpdb;
10 $table_name = stm_bookit_appointments_table_name($wpdb);
11 $wpdb->delete( $table_name, array( 'appointment_id' => $appointment_id ) );
12 }