eventorganiser_restored_booking
(action)
Pro
Triggered immediately after a cancelled booking is restored A restored booking is returned to the status it had before it was cancelled
Parameters
int
|
$booking_id |
The ID of the booking
|
Example Usage
add_action( 'eventorganiser_restored_booking', 'my_callback_function', 10, 1 );
function my_callback_function( $booking_id ){
//Do something
};