WPCW_COURSECOMPLETED::define_trigger()
Define and register the trigger by pushing it into the Automator object
Source Source
File: src/integrations/wp-courseware/triggers/wpcw-coursecompleted.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/wp-courseware/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - WP Courseware */ 'sentence' => sprintf( esc_attr__( 'A user completes {{a course:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - WP Courseware */ 'select_option_name' => esc_attr__( 'A user completes {{a course}}', 'uncanny-automator' ), 'action' => 'wpcw_user_completed_course', 'priority' => 20, 'accepted_args' => 3, 'validation_function' => array( $this, 'wpcw_course_completed' ), 'options' => [ Automator()->helpers->recipe->wp_courseware->options->all_wpcw_courses(), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; }
Expand full source code Collapse full source code View on Github