LF_QUIZATTEMPTED::define_trigger()
Define and register the trigger by pushing it into the Automator object
Source Source
File: src/integrations/lifterlms/triggers/lf-quizattempted.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/lifterlms/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - LifterLMS */ 'sentence' => sprintf( esc_attr__( 'A user attempts (passes or fails) {{a quiz:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - LifterLMS */ 'select_option_name' => esc_attr__( 'A user attempts (passes or fails) {{a quiz}}', 'uncanny-automator' ), 'action' => 'lifterlms_quiz_completed', 'priority' => 20, 'accepted_args' => 3, 'validation_function' => array( $this, 'lf_quiz_attempted' ), 'options' => [ Automator()->helpers->recipe->lifterlms->options->all_lf_quizs( null, $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