[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
gravity-form
/
actions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 delete-entry-gravity-form.php
2,774 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: delete-entry-gravity-form.php
<?php /** * DeleteEntryGravityForm. * php version 5.6 * * @category DeleteEntryGravityForm * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\GravityForms\Actions; use Exception; use SureTriggers\Integrations\AutomateAction; use SureTriggers\Traits\SingletonLoader; use GFAPI; /** * DeleteEntryGravityForm * * @category DeleteEntryGravityForm * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ class DeleteEntryGravityForm extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'GravityForms'; /** * Action name. * * @var string */ public $action = 'delete_entry_gravity_form'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Delete Entry for Form', 'suretriggers' ), 'action' => $this->action, 'function' => [ $this, 'action_listener' ], ]; return $actions; } /** * Action listener. * * @param int $user_id user_id. * @param int $automation_id automation_id. * @param array $fields fields. * @param array $selected_options selectedOptions. * @return array|void * @throws Exception Exception. */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { $form_id = $selected_options['gravity_form']; $entry_id = $selected_options['gravity_form_entry_id']; if ( ! class_exists( 'GFAPI' ) ) { return [ 'status' => 'error', 'message' => __( 'GFAPI class not found.', 'suretriggers' ), ]; } $entry_result = GFAPI::entry_exists( $entry_id ); if ( $entry_result ) { $entry = GFAPI::get_entry( $entry_id ); if ( $form_id === $entry['form_id'] ) { $delete_entry = GFAPI::delete_entry( $entry_id ); if ( is_wp_error( $delete_entry ) ) { throw new Exception( $delete_entry->get_error_message() ); } else { $context = [ 'status' => esc_attr__( 'Success', 'suretriggers' ), 'response' => esc_attr__( 'Entry deleted successfully.', 'suretriggers' ), ]; return $context; } } else { return [ 'status' => 'error', 'message' => 'Entry ID is not for specific form.', ]; } } else { return [ 'status' => 'error', 'message' => 'No Entry Found', ]; } } } DeleteEntryGravityForm::get_instance();