Multiple Award Winner

API Documents

Description.

bookingpress_after_update_appointment

Usage: add_action(‘bookingpress_after_update_appointment’, ‘bookingpress_after_update_appointment_func’, 10, 2); function bookingpress_after_update_appointment_func($bookingpress_update_id, $bookingpress_appointment_data) { //$bookingpress_update_id updated appointment id //$bookingpress_appointment_data updated appointment data } Parameters: $bookingpress_update_id Booking ID of the update appointment. $bookingpress_appointment_data Updated appointment data.

bookingpress_after_update_appointment Read More »

bookingpress_after_change_appointment_status

Usage: add_action(‘bookingpress_after_change_appointment_status’, ‘bookingpress_after_change_appointment_status_func’, 10, 2); function bookingpress_after_change_appointment_status_func($appointment_id, $bookingpress_appointment_status) { //$appointment_id updated appointment id //$bookingpress_appointment_status updated status } Parameters: $appointment_id Booking ID of the changed status. $bookingpress_appointment_status Appointment status.

bookingpress_after_change_appointment_status Read More »

bookingpress_after_book_appointment

Usage: add_action(‘bookingpress_after_book_appointment’, ‘bookingpress_after_book_appointment_func’, 10, 3); function bookingpress_after_book_appointment_func($inserted_booking_id, $entry_id, $payment_gateway_data) { //$inserted_booking_id Appointment id //$entry_id entry id //$payment_gateway_data payment gateway data } Parameters: $inserted_booking_id Inserted Appointment id. $entry_id Entry id. $payment_gateway_data Payment gateway data.

bookingpress_after_book_appointment Read More »