eventorganiser_new_booking
(action)
Pro
Fired after a booking is **created**.
The booking will not have been confirmed yet, but you can retrieve any booking
meta data collected from the booking form
Parameters
int
|
|
The booking's ID
|
array
|
|
Array passed to {@see eo_insert_booking()}
|
Example Usage
add_action( 'eventorganiser_new_booking', 'my_callback_function', 10, 2 );
function my_callback_function( , ){
//Do something
};