EDD_ORDERDONE
Class EDD_ORDERDONE
Source Source
File: src/integrations/edd/triggers/edd-orderdone.php
class EDD_ORDERDONE { /** * Integration code * @var string */ public static $integration = 'EDD'; private $trigger_code; private $trigger_meta; /** * SetAutomatorTriggers constructor. */ public function __construct() { $this->trigger_code = 'EDDORDERDONE'; $this->trigger_meta = 'EDDORDERTOTAL'; //$this->define_trigger(); } /** * Define and register the trigger by pushing it into the Automator object */ public function define_trigger() { $trigger = array( 'author' => Automator()->get_author_name( $this->trigger_code ), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/easy-digital-downloads/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - Easy Digital Downloads */ 'sentence' => sprintf( esc_attr__( 'Order total is {{equals to:%1$s}} ${{0:%2$s}} and placed {{a number of:%3$s}} time(s)', 'uncanny-automator' ), 'NUMBERCOND', $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - Easy Digital Downloads */ 'select_option_name' => esc_attr__( 'User completes {{an order}}', 'uncanny-automator' ), 'action' => 'edd_complete_purchase', 'priority' => 10, 'accepted_args' => 1, 'validation_function' => array( $this, 'edd_complete_purchase' ), 'options' => [ Automator()->helpers->recipe->field->integer_field( $this->trigger_meta ), Automator()->helpers->recipe->field->less_or_greater_than(), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; } /** * Validation function when the trigger action is hit * * @param $payment_id */ public function edd_complete_purchase( $payment_id ) { //TODO:: Complete this function $post_id = 0; $user_id = get_current_user_id(); $args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'post_id' => $post_id, 'user_id' => $user_id, ]; Automator()->maybe_add_trigger_entry( $args ); } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — SetAutomatorTriggers constructor.
- define_trigger — Define and register the trigger by pushing it into the Automator object
- edd_complete_purchase — Validation function when the trigger action is hit