| 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 |
|