LP_COURSEENROLLED::define_trigger()
Define and register the trigger by pushing it into the Automator object
Source Source
File: src/integrations/learnpress/triggers/lp-courseenrolled.php
public function define_trigger() { $trigger = array( 'author' => Automator()->get_author_name(), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/learnpress/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - LearnPress */ 'sentence' => sprintf( esc_attr__( 'A user is enrolled in {{a course:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - LearnPress */ 'select_option_name' => esc_attr__( 'A user is enrolled in {{a course}}', 'uncanny-automator' ), 'action' => 'learn-press/user-enrolled-course', 'priority' => 20, 'accepted_args' => 3, 'validation_function' => array( $this, 'lp_course_enrolled' ), 'options' => [ Automator()->helpers->recipe->learnpress->options->all_lp_courses( esc_attr__( 'Course', 'uncanny-automator' ), $this->trigger_meta ), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; }
Expand full source code Collapse full source code View on Github