event_merge_tag_groups = array( 'bwf_contact', 'wc_order', 'wc_funnel', 'wc_offer' ); $this->optgroup_label = esc_html__( 'One-Click Upsells', 'wp-marketing-automations-pro' ); $this->event_name = esc_html__( 'Offer Viewed', 'wp-marketing-automations-pro' ); $this->event_desc = esc_html__( 'This event runs after an offer is viewed by the customer.', 'wp-marketing-automations-pro' ); $this->event_rule_groups = array( 'wc_order', 'wc_customer', 'upstroke_funnel_offers', 'bwf_contact_segments', 'bwf_contact', 'bwf_contact_fields', 'bwf_contact_user', 'bwf_contact_wc', 'bwf_contact_geo', 'bwf_engagement', 'bwf_broadcast' ); $this->support_lang = true; $this->priority = 45.2; $this->v2 = true; } public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } public function load_hooks() { add_action( 'wfocu_offer_viewed_event', [ $this, 'offer_viewed' ], 999, 4 ); } /** * Set up rules data * * @param $value */ public function pre_executable_actions( $value ) { BWFAN_Core()->rules->setRulesData( $this->order, 'wc_order' ); BWFAN_Core()->rules->setRulesData( $this->funnel_id, 'upstroke_funnel_id' ); BWFAN_Core()->rules->setRulesData( $this->offer_id, 'upstroke_offer_id' ); BWFAN_Core()->rules->setRulesData( $this->event_automation_id, 'automation_id' ); BWFAN_Core()->rules->setRulesData( BWFAN_Common::get_bwf_customer( $this->order->get_billing_email(), $this->order->get_user_id() ), 'bwf_customer' ); } public function offer_viewed( $offer_id, $order_id, $funnel_id, $type_of_offer ) { $details = array( 'funnel_id' => $funnel_id, 'offer_id' => $offer_id, 'type_of_offer' => $type_of_offer, 'order_id' => $order_id, ); $this->process( $details ); } /** * Make the required data for the current event and send it asynchronously. * * @param $details */ public function process( $details ) { $data = $this->get_default_data(); $data['details'] = $details; $this->send_async_call( $data ); } /** * Registers the tasks for current event. * * @param $automation_id * @param $integration_data * @param $event_data */ public function register_tasks( $automation_id, $integration_data, $event_data ) { if ( ! is_array( $integration_data ) ) { return; } $data_to_send = $this->get_event_data(); $this->create_tasks( $automation_id, $integration_data, $event_data, $data_to_send ); } public function get_event_data() { $data_to_send = [ 'global' => [] ]; $data_to_send['global']['order_id'] = is_object( $this->order ) ? BWFAN_Woocommerce_Compatibility::get_order_id( $this->order ) : ''; $data_to_send['global']['wc_order'] = is_object( $this->order ) ? $this->order : ''; $data_to_send['global']['email'] = is_object( $this->order ) ? BWFAN_Woocommerce_Compatibility::get_billing_email( $this->order ) : ''; $data_to_send['global']['funnel_id'] = $this->funnel_id; $data_to_send['global']['offer_id'] = $this->offer_id; return $data_to_send; } /** * Make the view data for the current event which will be shown in task listing screen. * * @param $global_data * * @return false|string */ public function get_task_view( $global_data ) { ob_start(); ?>