Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
MASTERSTUDY_MARKCOURSECOMPLETE::mark_course_complete( $user_id, $action_data, $recipe_id, $args )
Validation function when the action is hit
Contents
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Parameters Parameters
- $user_id
(Required)
- $action_data
(Required)
- $recipe_id
(Required)
Source Source
File: src/integrations/masterstudy-lms/actions/masterstudy-markcoursecomplete.php
public function mark_course_complete( $user_id, $action_data, $recipe_id ) { $course_id = $action_data['meta'][ $this->action_meta ]; /*Check if lesson in course*/ $curriculum = get_post_meta( $course_id, 'curriculum', true ); if ( ! empty( $curriculum ) ) { $curriculum = \STM_LMS_Helpers::only_array_numbers( explode( ',', $curriculum ) ); $curriculum_posts = get_posts( [ 'post__in' => $curriculum, 'posts_per_page' => 999, 'post_type' => array( 'stm-lessons', 'stm-quizzes' ), 'post_status' => 'publish', ] ); if ( ! empty( $curriculum_posts ) ) { // Enroll the user is the course if they are not already enrolled $course = stm_lms_get_user_course( $user_id, $course_id, array( 'user_course_id' ) ); if ( ! count( $course ) ) { \STM_LMS_Course::add_user_course( $course_id, $user_id, \STM_LMS_Course::item_url( $course_id, '' ), 0 ); \STM_LMS_Course::add_student( $course_id ); } foreach ( $curriculum_posts as $post ) { if ( 'stm-lessons' === $post->post_type ) { // Complete Lesson $lesson_id = $post->ID; if ( \STM_LMS_Lesson::is_lesson_completed( $user_id, $course_id, $lesson_id ) ) { continue; }; $end_time = time(); $start_time = get_user_meta( $user_id, "stm_lms_course_started_{$course_id}_{$lesson_id}", true ); stm_lms_add_user_lesson( compact( 'user_id', 'course_id', 'lesson_id', 'start_time', 'end_time' ) ); \STM_LMS_Course::update_course_progress( $user_id, $course_id ); do_action( 'stm_lms_lesson_passed', $user_id, $lesson_id ); delete_user_meta( $user_id, "stm_lms_course_started_{$course_id}_{$lesson_id}" ); } if ( 'stm-quizzes' === $post->post_type ) { // Complete quiz $quiz_id = $post->ID; if ( \STM_LMS_Quiz::quiz_passed( $quiz_id, $user_id ) ) { continue; } $progress = 100; $status = 'passed'; $user_quiz = compact( 'user_id', 'course_id', 'quiz_id', 'progress', 'status' ); stm_lms_add_user_quiz( $user_quiz ); stm_lms_get_delete_user_quiz_time( $user_id, $quiz_id ); \STM_LMS_Course::update_course_progress( $user_id, $course_id ); $user_quiz['progress'] = round( $user_quiz['progress'], 1 ); do_action( 'stm_lms_quiz_' . $status, $user_id, $quiz_id, $user_quiz['progress'] ); } } Automator()->complete_action( $user_id, $action_data, $recipe_id ); } } }
Expand full source code Collapse full source code View on Github