# automatorwp/6.0.2/integrations/gravity-kit/includes/triggers/user-entry-approved.php

AutomatorWP – No-Code Workflow Automation, Integration &amp; Webhooks Plugin, now with AI, version 6.0.2. 114 lines.

- Page: https://pluginprobe.com/plugins/automatorwp/6.0.2/code/integrations/gravity-kit/includes/triggers/user-entry-approved.php
- Raw: https://pluginprobe.com/plugins/automatorwp/6.0.2/raw/integrations/gravity-kit/includes/triggers/user-entry-approved.php
- Modified: 2026-09-14T10:29:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/automatorwp/6.0.2/code/integrations/gravity-kit/includes/triggers/user-entry-approved.php#L10-L20`.

```php
<?php
/**
 * User Entry Approved
 *
 * @package     AutomatorWP\Integrations\Gravity_Kit\Triggers\User_Entry_Approved
 * @author      AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
 * @since       1.0.0
 */
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) exit;

class AutomatorWP_Gravity_Kit_User_Entry_Approved extends AutomatorWP_Integration_Trigger {

    public $integration = 'gravity_kit';
    public $trigger = 'gravity_kit_user_entry_approved';

    /**
     * Register the trigger
     *
     * @since 1.0.0
     */
    public function register() {

        automatorwp_register_trigger( $this->trigger, array(
            'integration'       => $this->integration,
            'label'             => __( 'User gets entry approved in form', 'automatorwp' ),
            'select_option'     => __( 'User gets entry approved in <strong>form</strong>', 'automatorwp' ),
            /* translators: %1$s: Post title. %2$s: Number of times. */
            'edit_label'        => sprintf( __( 'User gets entry approved in %1$s %2$s time(s)', 'automatorwp' ), '{post}', '{times}' ),
            /* translators: %1$s: Post title. */
            'log_label'         => sprintf( __( 'User gets entry approved in %1$s', 'automatorwp' ), '{post}' ),
            'action'            => 'gravityview/approve_entries/approved',
            'function'          => array( $this, 'listener' ),
            'priority'          => 10,
            'accepted_args'     => 1,
            'options'           => array(
                'post' => automatorwp_utilities_ajax_selector_option( array(
                    'field'             => 'post',
                    'name'              => __( 'Form:', 'automatorwp' ),
                    'option_none_value' => 'any',
                    'option_none_label' => __( 'any form', 'automatorwp' ),
                    'action_cb'         => 'automatorwp_gravity_kit_get_forms',
                    'options_cb'        => 'automatorwp_gravity_kit_options_cb_form',
                    'default'           => 'any'
                ) ),
                'times' => automatorwp_utilities_times_option(),
            ),
            'tags' => array(
                automatorwp_utilities_times_tag()
            )
        ) );

    }

    /**
     * Trigger listener
     *
     * @since 1.0.0
     *
     * @param int $entry_id ID of entry
     */
    public function listener( $entry_id ) {

        $user_id = automatorwp_gravity_kit_get_entry_user ( $entry_id );
        
        //Bail if empty user
        if ( empty( $user_id ) ) {
            return;
        }

        $form_id = automatorwp_gravity_kit_get_entry_form( $entry_id );

        // Trigger submit form event
        automatorwp_trigger_event( array(
            'trigger'       => $this->trigger,
            'user_id'       => $user_id,
            'form_id'       => $form_id,
        ) );

    }

    /**
     * User deserves check
     *
     * @since 1.0.0
     *
     * @param bool      $deserves_trigger   True if user deserves trigger, false otherwise
     * @param stdClass  $trigger            The trigger object
     * @param int       $user_id            The user ID
     * @param array     $event              Event information
     * @param array     $trigger_options    The trigger's stored options
     * @param stdClass  $automation         The trigger's automation object
     *
     * @return bool                          True if user deserves trigger, false otherwise
     */
    public function user_deserves_trigger( $deserves_trigger, $trigger, $user_id, $event, $trigger_options, $automation ) {

        // Don't deserve if post is not received
        if( ! isset( $event['form_id'] ) ) {
            return false;
        }

        // Bail if post doesn't match with the trigger option
        if( $trigger_options['post'] !== 'any' && absint( $event['form_id'] ) !== absint( $trigger_options['post'] ) ) {
            return false;
        }

        return $deserves_trigger;

    }

}

new AutomatorWP_Gravity_Kit_User_Entry_Approved();
```
