| Server IP : 104.26.2.156 / Your IP : 216.73.216.185 Web Server : nginx/1.27.1 System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 User : vinodai ( 3134) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v1396/wwwindicidolscom/public_html/wp-content/themes/shakti/plugins/booked/ |
Upload File : |
<?php
/* Booked Appointments support functions
------------------------------------------------------------------------------- */
// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'shakti_booked_theme_setup9' ) ) {
add_action( 'after_setup_theme', 'shakti_booked_theme_setup9', 9 );
function shakti_booked_theme_setup9() {
if ( shakti_exists_booked() ) {
add_action( 'wp_enqueue_scripts', 'shakti_booked_frontend_scripts', 1100 );
add_action( 'trx_addons_action_load_scripts_front_booked', 'shakti_booked_frontend_scripts', 10, 1 );
add_action( 'wp_enqueue_scripts', 'shakti_booked_frontend_scripts_responsive', 2000 );
add_action( 'trx_addons_action_load_scripts_front_booked', 'shakti_booked_frontend_scripts_responsive', 10, 1 );
add_filter( 'shakti_filter_merge_styles', 'shakti_booked_merge_styles' );
add_filter( 'shakti_filter_merge_styles_responsive', 'shakti_booked_merge_styles_responsive' );
}
if ( is_admin() ) {
add_filter( 'shakti_filter_tgmpa_required_plugins', 'shakti_booked_tgmpa_required_plugins' );
add_filter( 'shakti_filter_theme_plugins', 'shakti_booked_theme_plugins' );
}
}
}
// Filter to add in the required plugins list
if ( ! function_exists( 'shakti_booked_tgmpa_required_plugins' ) ) {
//Handler of the add_filter('shakti_filter_tgmpa_required_plugins', 'shakti_booked_tgmpa_required_plugins');
function shakti_booked_tgmpa_required_plugins( $list = array() ) {
if ( shakti_storage_isset( 'required_plugins', 'booked' ) && shakti_storage_get_array( 'required_plugins', 'booked', 'install' ) !== false && shakti_is_theme_activated() ) {
$path = shakti_get_plugin_source_path( 'plugins/booked/booked.zip' );
if ( ! empty( $path ) || shakti_get_theme_setting( 'tgmpa_upload' ) ) {
$list[] = array(
'name' => shakti_storage_get_array( 'required_plugins', 'booked', 'title' ),
'slug' => 'booked',
'source' => ! empty( $path ) ? $path : 'upload://booked.zip',
'version' => '2.3',
'required' => false,
);
}
}
return $list;
}
}
// Filter theme-supported plugins list
if ( ! function_exists( 'shakti_booked_theme_plugins' ) ) {
//Handler of the add_filter( 'shakti_filter_theme_plugins', 'shakti_booked_theme_plugins' );
function shakti_booked_theme_plugins( $list = array() ) {
return shakti_add_group_and_logo_to_slave( $list, 'booked', 'booked-' );
}
}
// Check if plugin installed and activated
if ( ! function_exists( 'shakti_exists_booked' ) ) {
function shakti_exists_booked() {
return class_exists( 'booked_plugin' );
}
}
// Return a relative path to the plugin styles depend the version
if ( ! function_exists( 'shakti_booked_get_styles_dir' ) ) {
function shakti_booked_get_styles_dir( $file ) {
$base_dir = 'plugins/booked/';
return $base_dir
. ( defined( 'BOOKED_VERSION' ) && version_compare( BOOKED_VERSION, '2.4', '<' ) && shakti_get_folder_dir( $base_dir . 'old' )
? 'old/'
: ''
)
. $file;
}
}
// Enqueue styles for frontend
if ( ! function_exists( 'shakti_booked_frontend_scripts' ) ) {
//Handler of the add_action( 'wp_enqueue_scripts', 'shakti_booked_frontend_scripts', 1100 );
//Handler of the add_action( 'trx_addons_action_load_scripts_front_booked', 'shakti_booked_frontend_scripts', 10, 1 );
function shakti_booked_frontend_scripts( $force = false ) {
static $loaded = false;
if ( ! $loaded && (
current_action() == 'wp_enqueue_scripts' && shakti_need_frontend_scripts( 'booked' )
||
current_action() != 'wp_enqueue_scripts' && $force === true
)
) {
$loaded = true;
$shakti_url = shakti_get_file_url( shakti_booked_get_styles_dir( 'booked.css' ) );
if ( '' != $shakti_url ) {
wp_enqueue_style( 'shakti-booked', $shakti_url, array(), null );
}
}
}
}
// Enqueue responsive styles for frontend
if ( ! function_exists( 'shakti_booked_frontend_scripts_responsive' ) ) {
//Handler of the add_action( 'wp_enqueue_scripts', 'shakti_booked_frontend_scripts_responsive', 2000 );
//Handler of the add_action( 'trx_addons_action_load_scripts_front_booked', 'shakti_booked_frontend_scripts_responsive', 10, 1 );
function shakti_booked_frontend_scripts_responsive( $force = false ) {
static $loaded = false;
if ( ! $loaded && (
current_action() == 'wp_enqueue_scripts' && shakti_need_frontend_scripts( 'booked' )
||
current_action() != 'wp_enqueue_scripts' && $force === true
)
) {
$loaded = true;
$shakti_url = shakti_get_file_url( shakti_booked_get_styles_dir( 'booked-responsive.css' ) );
if ( '' != $shakti_url ) {
wp_enqueue_style( 'shakti-booked-responsive', $shakti_url, array(), null, shakti_media_for_load_css_responsive( 'booked' ) );
}
}
}
}
// Merge custom styles
if ( ! function_exists( 'shakti_booked_merge_styles' ) ) {
//Handler of the add_filter('shakti_filter_merge_styles', 'shakti_booked_merge_styles');
function shakti_booked_merge_styles( $list ) {
$list[ shakti_booked_get_styles_dir( 'booked.css' ) ] = false;
return $list;
}
}
// Merge responsive styles
if ( ! function_exists( 'shakti_booked_merge_styles_responsive' ) ) {
//Handler of the add_filter('shakti_filter_merge_styles_responsive', 'shakti_booked_merge_styles_responsive');
function shakti_booked_merge_styles_responsive( $list ) {
$list[ shakti_booked_get_styles_dir( 'booked-responsive.css' ) ] = false;
return $list;
}
}
// Add plugin-specific colors and fonts to the custom CSS
if ( shakti_exists_booked() ) {
$shakti_fdir = shakti_get_file_dir( shakti_booked_get_styles_dir( 'booked-style.php' ) );
if ( ! empty( $shakti_fdir ) ) {
require_once $shakti_fdir;
}
}