[ 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
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 actions
SET
[ DEL ]
📁 triggers
SET
[ DEL ]
📄 fluent-booking.php
1,159 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: fluent-booking.php
<?php /** * FluentBooking core integrations file * * @since 1.0.0 * @package SureTrigger */ namespace SureTriggers\Integrations\FluentBooking; use SureTriggers\Controllers\IntegrationsController; use SureTriggers\Integrations\Integrations; use SureTriggers\Traits\SingletonLoader; /** * Class SureTrigger * * @package SureTriggers\Integrations\FluentBooking */ class FluentBooking extends Integrations { use SingletonLoader; /** * ID * * @var string */ protected $id = 'FluentBooking'; /** * SureTrigger constructor. */ public function __construct() { $this->name = __( 'FluentBooking', 'suretriggers' ); $this->description = __( 'FluentBooking is the Ultimate Scheduling Solution for WordPress. Harness the power of unlimited appointments, bookings, webinars, events, sales calls, etc., and save time with scheduling automation.', 'suretriggers' ); parent::__construct(); } /** * Is Plugin depended plugin is installed or not. * * @return bool */ public function is_plugin_installed() { return defined( 'FLUENT_BOOKING_VERSION' ); } } IntegrationsController::register( FluentBooking::class );