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 / wplms / includes / triggers / complete-unit.php

complete-unit.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/wplms/includes/triggers/complete-unit.php

109 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Complete Unit
4 *
5 * @package AutomatorWP\Integrations\WPLMS\Triggers\Complete_Unit
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_WPLMS_Complete_Unit extends AutomatorWP_Integration_Trigger {
13
14 public $integration = 'wplms';
15 public $trigger = 'wplms_complete_unit';
16
17 /**
18 * Register the trigger
19 *
20 * @since 1.0.0
21 */
22 public function register() {
23
24 automatorwp_register_trigger( $this->trigger, array(
25 'integration' => $this->integration,
26 'label' => __( 'User completes a unit', 'automatorwp' ),
27 'select_option' => __( 'User completes <strong>a unit</strong>', 'automatorwp' ),
28 /* translators: %1$s: Post title. %2$s: Number of times. */
29 'edit_label' => sprintf( __( 'User completes %1$s %2$s time(s)', 'automatorwp' ), '{post}', '{times}' ),
30 /* translators: %1$s: Post title. */
31 'log_label' => sprintf( __( 'User completes %1$s', 'automatorwp' ), '{post}' ),
32 'action' => 'wplms_unit_complete',
33 'function' => array( $this, 'listener' ),
34 'priority' => 10,
35 'accepted_args' => 4,
36 'options' => array(
37 'post' => automatorwp_utilities_post_option( array(
38 'name' => __( 'Unit:', 'automatorwp' ),
39 'option_none_label' => __( 'any unit', 'automatorwp' ),
40 'post_type' => 'unit'
41 ) ),
42 'times' => automatorwp_utilities_times_option(),
43 ),
44 'tags' => array_merge(
45 automatorwp_utilities_post_tags(),
46 automatorwp_utilities_times_tag()
47 )
48 ) );
49
50 }
51
52 /**
53 * Trigger listener
54 *
55 * @since 1.0.0
56 *
57 * @param integer $unit_id
58 * @param integer $info
59 * @param integer $course_id
60 * @param integer $user_id
61 */
62 public function listener( $unit_id, $course_progress = null, $course_id, $user_id = null ) {
63
64 if( ! $user_id ) {
65 $user_id = get_current_user_id();
66 }
67
68 automatorwp_trigger_event( array(
69 'trigger' => $this->trigger,
70 'user_id' => $user_id,
71 'post_id' => $unit_id,
72 'course_id' => $course_id,
73 ) );
74
75 }
76
77 /**
78 * User deserves check
79 *
80 * @since 1.0.0
81 *
82 * @param bool $deserves_trigger True if user deserves trigger, false otherwise
83 * @param stdClass $trigger The trigger object
84 * @param int $user_id The user ID
85 * @param array $event Event information
86 * @param array $trigger_options The trigger's stored options
87 * @param stdClass $automation The trigger's automation object
88 *
89 * @return bool True if user deserves trigger, false otherwise
90 */
91 public function user_deserves_trigger( $deserves_trigger, $trigger, $user_id, $event, $trigger_options, $automation ) {
92
93 // Don't deserve if post is not received
94 if( ! isset( $event['post_id'] ) ) {
95 return false;
96 }
97
98 // Don't deserve if post doesn't match with the trigger option
99 if( ! automatorwp_posts_matches( $event['post_id'], $trigger_options['post'] ) ) {
100 return false;
101 }
102
103 return $deserves_trigger;
104
105 }
106
107 }
108
109 new AutomatorWP_WPLMS_Complete_Unit();