PluginProbe
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution / 2.2.5
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution v2.2.5
2.4.0 2.3.0 2.2.5 2.2.0 2.1.2 2.1.1 trunk 1.10.0 1.10.01 1.10.02 1.5.0 1.5.01 1.5.02 1.5.1 1.5.10 1.5.20 1.5.21 1.5.22 1.5.23 1.5.24 1.5.25 1.6.0 1.7.0 1.7.1 1.7.2 All 33 releases
fluent-booking / fluent-booking.php

fluent-booking.php in Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution 2.2.5, at fluent-booking.php

32 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') or die;
2 /**
3 * Plugin Name: FluentBooking - Appointment Scheduling & Booking Solution
4 * Description: FluentBooking is the ultimate solution for booking appointments, meetings, webinars, events, sales calls, and more.
5 * Version: 2.2.5
6 * Author: Appointment & Booking Solution Team - WPManageNinja
7 * Author URI: https://fluentbooking.com
8 * Plugin URI: https://fluentbooking.com/pricing/
9 * License: GPLv2 or later
10 * Text Domain: fluent-booking
11 * Domain Path: /language
12 */
13
14 define('FLUENT_BOOKING_LITE', true);
15
16 if (defined('FLUENT_BOOKING_VERSION')) {
17 return;
18 }
19
20 define('FLUENT_BOOKING_DIR', plugin_dir_path(__FILE__));
21 define('FLUENT_BOOKING_URL', plugin_dir_url(__FILE__));
22 define('FLUENT_BOOKING_VERSION', '2.2.5');
23 define('FLUENT_BOOKING_DB_VERSION', '1.0.1');
24 define('FLUENT_BOOKING_ASSETS_VERSION', '2.2.5');
25 define('FLUENT_BOOKING_MIN_PRO_VERSION', '2.2.5');
26
27 require __DIR__ . '/vendor/autoload.php';
28
29 call_user_func(function ($bootstrap) {
30 $bootstrap(__FILE__);
31 }, require(__DIR__ . '/boot/app.php'));
32