1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php // phpcs:ignoreFile
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
/** * @class Trigger_Guest_Created * @since 2.4.9 */ class Trigger_Guest_Created extends Trigger {
public $supplied_data_items = [ 'guest', 'customer' ];
function load_admin_details() { $this->title = __( 'New Guest Captured', 'automatewoo' ); $this->group = __( 'Guests', 'automatewoo' ); $this->description = __( 'This trigger fires when a new guest is captured. Usually this immediately after they enter email during the checkout process.', 'automatewoo' ); }
function register_hooks() { add_action( 'automatewoo/session_tracker/new_stored_guest', [ $this, 'catch_hooks' ], 100, 1 ); }
/** * @param $guest Guest */ function catch_hooks( $guest ) { $this->maybe_run([ 'guest' => $guest, 'customer' => Customer_Factory::get_by_guest_id( $guest->get_id() ), ]); }
}
|