EDD_ORDERDONE::define_trigger()
Define and register the trigger by pushing it into the Automator object
Source Source
File: src/integrations/edd/triggers/edd-orderdone.php
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; }
Expand full source code Collapse full source code View on Github