TUTORLMS_COURSECOMPLETED::define_trigger()
Registers Course Completion trigger.
Source Source
File: src/integrations/tutorlms/triggers/tutorlms-coursecompleted.php
public function define_trigger() { // global automator object. // setup trigger configuration. $trigger = array( 'author' => Automator()->get_author_name( $this->trigger_code ), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/tutor-lms/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - TutorLMS */ '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 - TutorLMS */ 'select_option_name' => esc_attr__( 'A user completes {{a course}}', 'uncanny-automator' ), 'action' => 'tutor_course_complete_after', 'priority' => 10, 'accepted_args' => 1, 'validation_function' => array( $this, 'complete' ), // very last call in WP, we need to make sure they viewed the page and didn't skip before is was fully viewable 'options' => [ Automator()->helpers->recipe->tutorlms->options->all_tutorlms_courses( null, $this->trigger_meta, true, true ), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); }
Expand full source code Collapse full source code View on Github
Changelog Changelog
Version | Description |
---|---|
2.4.0 | Introduced. |