This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Monitor new booking creation using wc_get_logger | |
*/ | |
function log_all_new_bookings( $booking_id ) { | |
if ( ! function_exists( 'get_wc_booking' ) ) { | |
return; | |
} | |
$booking = get_wc_booking( $booking_id ); |
OlderNewer