| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/eglisebaa/www/wp-content/plugins/trx_addons2/components/api/booked/ |
| Current File : /home/eglisebaa/www/wp-content/plugins/trx_addons2/components/api/booked/booked.php |
<?php
/**
* Plugin support: Booked Appointments
*
* @package WordPress
* @subpackage ThemeREX Addons
* @since v1.5
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
die( '-1' );
}
// Check if plugin is installed and activated
if ( !function_exists( 'trx_addons_exists_booked' ) ) {
function trx_addons_exists_booked() {
return class_exists( 'booked_plugin' );
}
}
// Add plugin-specific slugs to the list of the scripts, that don't move to the footer and don't add 'defer' param
if ( !function_exists( 'trx_addons_booked_not_defer_scripts' ) ) {
add_filter("trx_addons_filter_skip_move_scripts_down", 'trx_addons_booked_not_defer_scripts');
add_filter("trx_addons_filter_skip_async_scripts_load", 'trx_addons_booked_not_defer_scripts');
function trx_addons_booked_not_defer_scripts($list) {
if ( trx_addons_exists_booked() ) {
$list[] = 'spin.min.js';
}
return $list;
}
}
// Add shortcodes
//----------------------------------------------------------------------------
// Add shortcodes to Elementor
if ( trx_addons_exists_booked() && trx_addons_exists_elementor() && function_exists('trx_addons_elm_init') ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'booked/booked-sc-elementor.php';
}
// Add shortcodes to VC
if ( trx_addons_exists_booked() && trx_addons_exists_vc() && function_exists( 'trx_addons_vc_add_id_param' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'booked/booked-sc-vc.php';
}
// Demo data install
//----------------------------------------------------------------------------
// One-click import support
if ( is_admin() ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'booked/booked-demo-importer.php';
}
// OCDI support
if ( is_admin() && trx_addons_exists_booked() && trx_addons_exists_ocdi() ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'booked/booked-demo-ocdi.php';
}