LF_MARKLESSONDONE

Class LF_MARKLESSONDONE


Source Source

File: src/integrations/lifterlms/actions/lf-marklessondone.php

class LF_MARKLESSONDONE {
	/**
	 * Integration code
	 * @var string
	 */
	public static $integration = 'LF';
	private $action_code;
	private $action_meta;
	/**
	 * Set up Automator action constructor.
	 */
	public function __construct() {
		$this->action_code = 'LFMARKLESSONDONE-A';
		$this->action_meta = 'LFLESSON';
		$this->define_action();
	}
	/**
	 * Define and register the action by pushing it into the Automator object
	 */
	public function define_action() {

		$action = array(
			'author'             => Automator()->get_author_name( $this->action_code ),
			'support_link'       => Automator()->get_author_support_link( $this->action_code, 'integration/lifterlms/' ),
			'integration'        => self::$integration,
			'code'               => $this->action_code,
			/* translators: Action - LifterLMS */
			'sentence'           => sprintf( esc_attr__( 'Mark {{a lesson:%1$s}} complete for the user', 'uncanny-automator' ), $this->action_meta ),
			/* translators: Action - LifterLMS */
			'select_option_name' => esc_attr__( 'Mark {{a lesson}} complete for the user', 'uncanny-automator' ),
			'priority'           => 10,
			'accepted_args'      => 1,
			'execution_function' => array( $this, 'lf_mark_lesson_done' ),
			'options'            => [
				Automator()->helpers->recipe->lifterlms->options->all_lf_lessons( esc_attr__( 'Lesson', 'uncanny-automator' ), $this->action_meta, false ),
			],
		);
		Automator()->register->action( $action );
	}

	/**
	 * Validation function when the action is hit.
	 *
	 * @param string $user_id user id.
	 * @param array $action_data action data.
	 * @param string $recipe_id recipe id.
	 */
	public function lf_mark_lesson_done( $user_id, $action_data, $recipe_id ) {

		if ( ! function_exists( 'llms_mark_complete' ) ) {
			$error_message = 'The function llms_mark_complete does not exist';
			Automator()->complete_action( $user_id, $action_data, $recipe_id, $error_message );
			return;
		}
		$lesson_id = $action_data['meta'][ $this->action_meta ];
		// Mark lesson completed.
		llms_mark_complete( $user_id, $lesson_id, 'lesson' );
		Automator()->complete_action( $user_id, $action_data, $recipe_id );
	}
}

Methods Methods