WPLMS_COURSESTARTED
Class WPLMS_COURSESTARTED
Source Source
File: src/integrations/wplms/triggers/wplms-coursestarted.php
class WPLMS_COURSESTARTED { /** * Integration code * @var string */ public static $integration = 'WPLMS'; private $trigger_code; private $trigger_meta; /** * Set up Automator trigger constructor. */ public function __construct() { $this->trigger_code = 'WPLMSCOURSESTARTED'; $this->trigger_meta = 'WPLMS_COURSESTART'; $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/wp-lms/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - WP LMS */ 'sentence' => sprintf( esc_attr__( 'A user starts {{a course:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - WP LMS */ 'select_option_name' => esc_attr__( 'A user starts {{a course}}', 'uncanny-automator' ), 'action' => 'wplms_start_course', 'priority' => 20, 'accepted_args' => 3, 'validation_function' => array( $this, 'wplms_course_started' ), 'options' => [ Automator()->helpers->recipe->wplms->options->all_wplms_courses( esc_attr__( 'Course', 'uncanny-automator' ), $this->trigger_meta ), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; } /** * Validation function when the trigger action is hit * * @param integer $course_id * @param null $marks * @param integer $user_id */ public function wplms_course_started( $course_id, $marks, $user_id ) { if ( ! $user_id ) { $user_id = get_current_user_id(); } if ( empty( $user_id ) ) { return; } $args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'post_id' => intval( $course_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 — Set up Automator trigger constructor.
- define_trigger — Define and register the trigger by pushing it into the Automator object
- load_options
- wplms_course_started — Validation function when the trigger action is hit