[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-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
/
JetEngineCCT
/
actions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 create-cct-item.php
4,171 B
SET
[ EDIT ]
|
[ DEL ]
📄 get-cct-fields.php
3,578 B
SET
[ EDIT ]
|
[ DEL ]
📄 get-cct-records-by-field.php
4,296 B
SET
[ EDIT ]
|
[ DEL ]
📄 update-cct-item.php
4,528 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: update-cct-item.php
<?php /** * UpdateCCTItem. * php version 5.6 * * @category UpdateCCTItem * @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\JetEngineCCT\Actions; use SureTriggers\Integrations\AutomateAction; use SureTriggers\Traits\SingletonLoader; /** * UpdateCCTItem * * @category UpdateCCTItem * @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 UpdateCCTItem extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'JetEngineCCT'; /** * Action name. * * @var string */ public $action = 'jet_engine_update_cct_item'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Update CCT Item', '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 ) { if ( ! class_exists( '\Jet_Engine\Modules\Custom_Content_Types\Module' ) ) { return [ 'status' => 'error', 'message' => __( 'JetEngine Custom Content Types module is not active.', 'suretriggers' ), ]; } $cct_slug = isset( $selected_options['cct_slug'] ) ? sanitize_text_field( $selected_options['cct_slug'] ) : ''; $item_id = isset( $selected_options['cct_item_id'] ) ? absint( $selected_options['cct_item_id'] ) : 0; if ( empty( $cct_slug ) ) { return [ 'status' => 'error', 'message' => __( 'CCT slug is required.', 'suretriggers' ), ]; } if ( empty( $item_id ) ) { return [ 'status' => 'error', 'message' => __( 'CCT Item ID is required.', 'suretriggers' ), ]; } $content_types = \Jet_Engine\Modules\Custom_Content_Types\Module::instance()->manager->get_content_types(); $factory = isset( $content_types[ $cct_slug ] ) ? $content_types[ $cct_slug ] : false; if ( ! $factory ) { return [ 'status' => 'error', 'message' => sprintf( /* translators: %s: CCT slug */ __( 'Custom Content Type "%s" not found.', 'suretriggers' ), $cct_slug ), ]; } $existing_item = $factory->db->get_item( $item_id ); if ( ! $existing_item ) { return [ 'status' => 'error', 'message' => sprintf( /* translators: %d: Item ID */ __( 'CCT item with ID %d not found.', 'suretriggers' ), $item_id ), ]; } $update_data = []; $update_data['_ID'] = $item_id; if ( ! empty( $selected_options['cct_fields'] ) && is_array( $selected_options['cct_fields'] ) ) { foreach ( $selected_options['cct_fields'] as $field ) { $field_name = isset( $field['field_name'] ) ? sanitize_text_field( $field['field_name'] ) : ''; $field_value = isset( $field['field_value'] ) ? $field['field_value'] : ''; if ( ! empty( $field_name ) ) { $update_data[ $field_name ] = $field_value; } } } $handler = $factory->get_item_handler(); if ( ! $handler ) { return [ 'status' => 'error', 'message' => __( 'Unable to get item handler for CCT.', 'suretriggers' ), ]; } $result = $handler->update_item( $update_data ); if ( is_wp_error( $result ) ) { return [ 'status' => 'error', 'message' => $result->get_error_message(), ]; } $updated_item = $factory->db->get_item( $item_id ); if ( ! $updated_item ) { return [ 'status' => 'error', 'message' => __( 'Failed to retrieve updated CCT item.', 'suretriggers' ), ]; } $context = [ 'cct_slug' => $cct_slug, 'cct_item_id' => $item_id, ]; $item_array = is_object( $updated_item ) ? (array) $updated_item : $updated_item; if ( is_array( $item_array ) ) { foreach ( $item_array as $key => $value ) { $context[ $key ] = maybe_unserialize( $value ); } } return $context; } } UpdateCCTItem::get_instance();