eventorganiser_cancel_booking
(action)
Pro
Triggered immediately before a booking is cancelled
Parameters
int
|
$booking_id |
The ID of the booking
|
Example Usage
add_action( 'eventorganiser_cancel_booking', 'my_callback_function', 10, 1 );
function my_callback_function( $booking_id ){
//Do something
};