[ 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
/
fluent-booking
/
triggers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 appointment-booked.php
2,730 B
SET
[ EDIT ]
|
[ DEL ]
📄 appointment-cancelled.php
2,764 B
SET
[ EDIT ]
|
[ DEL ]
📄 appointment-completed.php
2,764 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: appointment-cancelled.php
<?php /** * AppointmentCancelled. * php version 5.6 * * @category AppointmentCancelled * @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\FluentBooking\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Integrations\WordPress\WordPress; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'AppointmentCancelled' ) ) : /** * AppointmentCancelled * * @category AppointmentCancelled * @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 AppointmentCancelled { /** * Integration type. * * @var string */ public $integration = 'FluentBooking'; /** * Trigger name. * * @var string */ public $trigger = 'fluent_booking_appointment_cancelled'; 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' => __( 'Appointment Cancelled', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'fluent_booking/booking_schedule_cancelled', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 3, ]; return $triggers; } /** * Trigger listener * * @param array $booking Appointment Data. * @param array $calendar_event calendar event Data. * @since 1.0.0 * * @return void */ public function trigger_listener( $booking, $calendar_event ) { if ( empty( $booking ) ) { return; } if ( 'cancelled' !== $booking['status'] ) { return; } $booking_data = $booking; if ( is_object( $booking ) && method_exists( $booking, 'getCustomFormData' ) ) { $booking_data['custom_fields'] = $booking->getCustomFormData( false ); } $booking_array = [ 'event_id' => $calendar_event['id'], 'booking' => $booking_data, 'event' => $calendar_event, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $booking_array, ] ); } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ AppointmentCancelled::get_instance(); endif;