FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
wp-travel-engine
/
triggers
Edit File: booking-created.php
<?php /** * BookingCreated. * php version 5.6 * * @category BookingCreated * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\WPTravelEngine\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'BookingCreated' ) ) : /** * BookingCreated * * @category BookingCreated * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 * * @psalm-suppress UndefinedTrait */ class BookingCreated { /** * Integration type. * * @var string */ public $integration = 'WPTravelEngine'; /** * Trigger name. * * @var string */ public $trigger = 'wte_booking_created'; use SingletonLoader; /** * Constructor * * @since 1.0.0 */ public function __construct() { add_filter( 'sure_trigger_register_trigger', [ $this, 'register' ] ); } /** * Register action. * * @param array $triggers trigger data. * @return array */ public function register( $triggers ) { $triggers[ $this->integration ][ $this->trigger ] = [ 'label' => __( 'Booking Created', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'wp_travel_engine_after_booking_process_completed', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 1, ]; return $triggers; } /** * Trigger listener * * @param int $booking_id Booking ID. * @return void */ public function trigger_listener( $booking_id ) { if ( empty( $booking_id ) ) { return; } $booking_data = get_post( $booking_id ); $booking_meta = get_post_meta( $booking_id, 'wp_travel_engine_booking_setting', true ); $payment_status = get_post_meta( $booking_id, 'wp_travel_engine_booking_payment_status', true ); $payment_gateway = get_post_meta( $booking_id, 'wp_travel_engine_booking_payment_gateway', true ); $payment_details = get_post_meta( $booking_id, 'wp_travel_engine_booking_payment_details', true ); $coupon_details = []; $cart_info = get_post_meta( $booking_id, 'cart_info', true ); // Check cart_info for discounts. if ( ! empty( $cart_info ) && is_array( $cart_info ) && isset( $cart_info['discounts'] ) ) { foreach ( $cart_info['discounts'] as $discount ) { if ( isset( $discount['name'] ) ) { $coupon_details[] = [ 'coupon_code' => $discount['name'], 'discount_type' => isset( $discount['type'] ) ? $discount['type'] : '', 'discount_value' => isset( $discount['value'] ) ? $discount['value'] : 0, ]; } } } $context = [ 'booking_data' => $booking_data, 'booking_meta' => $booking_meta, 'payment_status' => $payment_status, 'payment_gateway' => $payment_gateway, 'payment_details' => $payment_details, 'coupon_details' => $coupon_details, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ BookingCreated::get_instance(); endif;
Save
Back