[ 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
/
wp-travel-engine
/
triggers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 booking-cancelled.php
3,314 B
SET
[ EDIT ]
|
[ DEL ]
📄 booking-confirmed.php
3,317 B
SET
[ EDIT ]
|
[ DEL ]
📄 booking-created.php
3,480 B
SET
[ EDIT ]
|
[ DEL ]
📄 new-enquiry-submitted.php
2,310 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: new-enquiry-submitted.php
<?php /** * NewEnquirySubmitted. * php version 5.6 * * @category NewEnquirySubmitted * @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\WPTravelEngine\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'NewEnquirySubmitted' ) ) : /** * NewEnquirySubmitted * * @category NewEnquirySubmitted * @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 * * @psalm-suppress UndefinedTrait */ class NewEnquirySubmitted { /** * Integration type. * * @var string */ public $integration = 'WPTravelEngine'; /** * Trigger name. * * @var string */ public $trigger = 'wte_enquiry_submitted'; use SingletonLoader; /** * Constructor * * @since 1.0.0 */ public function __construct() { add_filter( 'sure_trigger_register_trigger', [ $this, 'register' ] ); } /** * Register action. * * @param array $triggers trigger data. * @return array */ public function register( $triggers ) { $triggers[ $this->integration ][ $this->trigger ] = [ 'label' => __( 'New Enquiry Submitted', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'wte_after_enquiry_created', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 1, ]; return $triggers; } /** * Trigger listener * * @param int $post_id Enquiry post ID. * @return void */ public function trigger_listener( $post_id ) { if ( empty( $post_id ) ) { return; } $data = get_post( $post_id ); $context = [ 'enquiry_post_id' => $post_id, 'post_data' => $data, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ NewEnquirySubmitted::get_instance(); endif;