PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / 6.0.2
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI v6.0.2
6.0.2 6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 All 33 releases
automatorwp / integrations / masterstudy-lms / includes / actions / user-course.php

user-course.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/masterstudy-lms/includes/actions/user-course.php

99 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * User Course
4 *
5 * @package AutomatorWP\Integrations\MasterStudy_LMS\Actions\User_Course
6 * @author AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
7 * @since 1.0.0
8 */
9 // Exit if accessed directly
10 if( !defined( 'ABSPATH' ) ) exit;
11
12 class AutomatorWP_MasterStudy_LMS_User_Course extends AutomatorWP_Integration_Action {
13
14 public $integration = 'masterstudy_lms';
15 public $action = 'masterstudy_lms_user_course';
16
17 /**
18 * Register the trigger
19 *
20 * @since 1.0.0
21 */
22 public function register() {
23
24 automatorwp_register_action( $this->action, array(
25 'integration' => $this->integration,
26 'label' => __( 'Enroll user from a course', 'automatorwp' ),
27 'select_option' => __( 'Enroll user from <strong>a course</strong>', 'automatorwp' ),
28 /* translators: %1$s: Post title. */
29 'edit_label' => sprintf( __( 'Enroll user to %1$s', 'automatorwp' ), '{post}' ),
30 /* translators: %1$s: Post title. */
31 'log_label' => sprintf( __( 'Enroll user to %1$s', 'automatorwp' ), '{post}' ),
32 'options' => array(
33 'post' => automatorwp_utilities_post_option( array(
34 'name' => __( 'Course:', 'automatorwp' ),
35 'option_none_label' => __( 'all courses', 'automatorwp' ),
36 'option_custom' => true,
37 'option_custom_desc' => __( 'Course ID', 'automatorwp' ),
38 'post_type' => 'stm-courses',
39 ) ),
40 ),
41 ) );
42
43 }
44
45 /**
46 * Action execution function
47 *
48 * @since 1.0.0
49 *
50 * @param stdClass $action The action object
51 * @param int $user_id The user ID
52 * @param array $action_options The action's stored options (with tags already passed)
53 * @param stdClass $automation The action's automation object
54 */
55 public function execute( $action, $user_id, $action_options, $automation ) {
56
57 // Shorthand
58 $course_id = $action_options['post'];
59
60 $courses = array();
61
62 // Check specific course
63 if( $course_id !== 'any' ) {
64
65 $course = get_post( $course_id );
66
67 // Bail if course doesn't exists
68 if( ! $course ) {
69 return;
70 }
71
72 $courses = array( $course_id );
73
74 }
75
76 // If enrolling to all courses, get all courses
77 if( $course_id === 'any' ) {
78
79 $query = new WP_Query( array(
80 'post_type' => 'stm-courses',
81 'post_status' => 'publish',
82 'fields' => 'ids',
83 'nopaging' => true,
84 ) );
85
86 $courses = $query->get_posts();
87 }
88
89 // Enroll user in courses
90 foreach( $courses as $course_id ) {
91 STM_LMS_Course::add_user_course( $course_id, $user_id, 0, 0 );
92 STM_LMS_Course::add_student( $course_id );
93 }
94
95 }
96
97 }
98
99 new AutomatorWP_MasterStudy_LMS_User_Course();