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 / gravity-kit / includes / triggers / user-entry-approved.php

user-entry-approved.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/gravity-kit/includes/triggers/user-entry-approved.php

114 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * User Entry Approved
4 *
5 * @package AutomatorWP\Integrations\Gravity_Kit\Triggers\User_Entry_Approved
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_Gravity_Kit_User_Entry_Approved extends AutomatorWP_Integration_Trigger {
13
14 public $integration = 'gravity_kit';
15 public $trigger = 'gravity_kit_user_entry_approved';
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 gets entry approved in form', 'automatorwp' ),
27 'select_option' => __( 'User gets entry approved in <strong>form</strong>', 'automatorwp' ),
28 /* translators: %1$s: Post title. %2$s: Number of times. */
29 'edit_label' => sprintf( __( 'User gets entry approved in %1$s %2$s time(s)', 'automatorwp' ), '{post}', '{times}' ),
30 /* translators: %1$s: Post title. */
31 'log_label' => sprintf( __( 'User gets entry approved in %1$s', 'automatorwp' ), '{post}' ),
32 'action' => 'gravityview/approve_entries/approved',
33 'function' => array( $this, 'listener' ),
34 'priority' => 10,
35 'accepted_args' => 1,
36 'options' => array(
37 'post' => automatorwp_utilities_ajax_selector_option( array(
38 'field' => 'post',
39 'name' => __( 'Form:', 'automatorwp' ),
40 'option_none_value' => 'any',
41 'option_none_label' => __( 'any form', 'automatorwp' ),
42 'action_cb' => 'automatorwp_gravity_kit_get_forms',
43 'options_cb' => 'automatorwp_gravity_kit_options_cb_form',
44 'default' => 'any'
45 ) ),
46 'times' => automatorwp_utilities_times_option(),
47 ),
48 'tags' => array(
49 automatorwp_utilities_times_tag()
50 )
51 ) );
52
53 }
54
55 /**
56 * Trigger listener
57 *
58 * @since 1.0.0
59 *
60 * @param int $entry_id ID of entry
61 */
62 public function listener( $entry_id ) {
63
64 $user_id = automatorwp_gravity_kit_get_entry_user ( $entry_id );
65
66 //Bail if empty user
67 if ( empty( $user_id ) ) {
68 return;
69 }
70
71 $form_id = automatorwp_gravity_kit_get_entry_form( $entry_id );
72
73 // Trigger submit form event
74 automatorwp_trigger_event( array(
75 'trigger' => $this->trigger,
76 'user_id' => $user_id,
77 'form_id' => $form_id,
78 ) );
79
80 }
81
82 /**
83 * User deserves check
84 *
85 * @since 1.0.0
86 *
87 * @param bool $deserves_trigger True if user deserves trigger, false otherwise
88 * @param stdClass $trigger The trigger object
89 * @param int $user_id The user ID
90 * @param array $event Event information
91 * @param array $trigger_options The trigger's stored options
92 * @param stdClass $automation The trigger's automation object
93 *
94 * @return bool True if user deserves trigger, false otherwise
95 */
96 public function user_deserves_trigger( $deserves_trigger, $trigger, $user_id, $event, $trigger_options, $automation ) {
97
98 // Don't deserve if post is not received
99 if( ! isset( $event['form_id'] ) ) {
100 return false;
101 }
102
103 // Bail if post doesn't match with the trigger option
104 if( $trigger_options['post'] !== 'any' && absint( $event['form_id'] ) !== absint( $trigger_options['post'] ) ) {
105 return false;
106 }
107
108 return $deserves_trigger;
109
110 }
111
112 }
113
114 new AutomatorWP_Gravity_Kit_User_Entry_Approved();