/var/www/html_uk/wp-content/plugins/automatewoo/includes/Triggers/Order_Created.php


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
<?php
// phpcs:ignoreFile

namespace AutomateWoo;

if ( ! 
defined'ABSPATH' ) ) exit;

/**
 * @class Trigger_Order_Created
 */
class Trigger_Order_Created extends Trigger_Abstract_Order_Base {

    
/**
     * Async events required by the trigger.
     *
     * @since 4.8.0
     * @var string|array
     */
    
protected $required_async_events 'order_created';


    function 
load_admin_details() {
        
parent::load_admin_details();
        
$this->title __'Order Created''automatewoo' );
        
$this->description __'This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed.''automatewoo' );
    }


    function 
register_hooks() {
        
add_action'automatewoo/async/order_created', [ $this'trigger_for_order' ] );
    }

}