| 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(); |