Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/api/quickcal/quickcal.php |
<?php
/**
* Plugin support: QuickCal
*
* @package ThemeREX Addons
* @since v2.26.0
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
if ( ! function_exists( 'trx_addons_exists_quickcal' ) ) {
/**
* Check if QuickCal is installed and activated
*
* @return bool True if plugin is installed and activated
*/
function trx_addons_exists_quickcal() {
return class_exists( 'quickcal_plugin' );
}
}
if ( ! function_exists( 'trx_addons_quickcal_disable_clear_update_info' ) ) {
//add_action( 'init', 'trx_addons_quickcal_disable_clear_update_info', 9999 );
/**
* Disable clear update info for the QuickCal plugin.
* This plugin has a problem while checking for updates from its site and it clears update info
* and blocks the update process from our upgrade site.
*/
function trx_addons_quickcal_disable_clear_update_info() {
if ( trx_addons_exists_quickcal() ) {
trx_addons_remove_filter( 'site_transient_update_plugins', 'injectUpdate', 'PluginUpdateChecker_2_3' ); //WP 3.0+
trx_addons_remove_filter( 'transient_update_plugins', 'injectUpdate', 'PluginUpdateChecker_2_3' ); //WP 2.8+
}
}
}
if ( ! function_exists( 'trx_addons_quickcal_create_empty_post_on_404' ) ) {
add_action( 'wp_head', 'trx_addons_quickcal_create_empty_post_on_404', 1 );
add_filter( 'display_post_states', 'trx_addons_quickcal_create_empty_post_on_404', 1 );
/**
* Create empty post (global variable) on 404 page to prevent errors in the QuickCal plugin
*
* @param bool $states Current state
*
* @return bool Not modified state
*/
function trx_addons_quickcal_create_empty_post_on_404($states=false) {
if ( trx_addons_exists_quickcal() && ( is_404() || current_filter() == 'display_post_states' ) ) {
// Create empty object 'post'
if ( ! isset( $GLOBALS['post'] ) ) {
$GLOBALS['post'] = new stdClass();
$GLOBALS['post']->ID = 0;
$GLOBALS['post']->post_type = 'unknown';
$GLOBALS['post']->post_content = '';
}
// Add 'post_status' to the object 'post' if it not exists
if ( ! isset( $GLOBALS['post']->post_status ) ) {
$GLOBALS['post']->post_status = 'unknown';
}
}
return $states;
}
}
if ( ! function_exists( 'trx_addons_quickcal_not_defer_scripts' ) ) {
add_filter( "trx_addons_filter_skip_move_scripts_down", 'trx_addons_quickcal_not_defer_scripts' );
add_filter( "trx_addons_filter_skip_async_scripts_load", 'trx_addons_quickcal_not_defer_scripts' );
/**
* Add plugin-specific slugs to the list of scripts that should not be deferred or loaded asynchronously
*
* @hooked trx_addons_filter_skip_move_scripts_down
* @hooked trx_addons_filter_skip_async_scripts_load
*
* @param array $list List of scripts to skip defer/async
*
* @return array Modified list
*/
function trx_addons_quickcal_not_defer_scripts( $list ) {
if ( trx_addons_exists_quickcal() ) {
$list[] = 'spin.min.js';
}
return $list;
}
}
if ( ! function_exists( 'trx_addons_quickcal_load_scripts_front' ) ) {
add_action( "wp_enqueue_scripts", 'trx_addons_quickcal_load_scripts_front', TRX_ADDONS_ENQUEUE_SCRIPTS_PRIORITY );
add_action( 'trx_addons_action_pagebuilder_preview_scripts', 'trx_addons_quickcal_load_scripts_front', 10, 1 );
/**
* Enqueue custom styles and scripts for QuickCal plugin on the front
*
* @hooked wp_enqueue_scripts
* @hooked trx_addons_action_pagebuilder_preview_scripts
*
* @trigger trx_addons_action_load_scripts_front
*
* @param bool $force Force load scripts
*/
function trx_addons_quickcal_load_scripts_front( $force = false ) {
if ( ! trx_addons_exists_quickcal() ) {
return;
}
trx_addons_enqueue_optimized( 'quickcal', $force, array(
'check' => array(
array( 'type' => 'sc', 'sc' => 'quickcal-calendar' ),
array( 'type' => 'sc', 'sc' => 'quickcal-login' ),
array( 'type' => 'sc', 'sc' => 'quickcal-profile' ),
array( 'type' => 'sc', 'sc' => 'quickcal-appointments' ),
//array( 'type' => 'gb', 'sc' => 'wp:trx-addons/events' ), // This sc is not exists for GB
array( 'type' => 'elm', 'sc' => '"widgetType":"wp-widget-quickcal_calendar"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_quickcal_calendar"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_quickcal_login"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_quickcal_profile"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_quickcal_appointments"' ),
array( 'type' => 'elm', 'sc' => '"shortcode":"[quickcal-' ),
// Legacy shortcodes (aka Booked)
array( 'type' => 'sc', 'sc' => 'booked-calendar' ),
array( 'type' => 'sc', 'sc' => 'booked-login' ),
array( 'type' => 'sc', 'sc' => 'booked-profile' ),
array( 'type' => 'sc', 'sc' => 'booked-appointments' ),
//array( 'type' => 'gb', 'sc' => 'wp:trx-addons/events' ), // This sc is not exists for GB
array( 'type' => 'elm', 'sc' => '"widgetType":"wp-widget-booked_calendar"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_booked_calendar"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_booked_login"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_booked_profile"' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_booked_appointments"' ),
array( 'type' => 'elm', 'sc' => '"shortcode":"[booked-' ),
)
) );
}
}
if ( ! function_exists( 'trx_addons_quickcal_check_in_html_output' ) ) {
// add_filter( 'trx_addons_filter_get_menu_cache_html', 'trx_addons_quickcal_check_in_html_output', 10, 1 );
// add_action( 'trx_addons_action_show_layout_from_cache', 'trx_addons_quickcal_check_in_html_output', 10, 1 );
add_action( 'trx_addons_action_check_page_content', 'trx_addons_quickcal_check_in_html_output', 10, 1 );
/**
* Check if the output html contains specific shortcode and load required styles and scripts if found
*
* @hooked trx_addons_action_check_page_content
*
* @param string $content Page content
*
* @return string Page content
*/
function trx_addons_quickcal_check_in_html_output( $content = '' ) {
if ( ! trx_addons_exists_quickcal() ) {
return $content;
}
$args = array(
'check' => array(
'class=[\'"][^\'"]*booked-',
'class=[\'"][^\'"]*type\\-booked_appointments',
'class=[\'"][^\'"]*booked_custom_calendars\\-',
)
);
if ( trx_addons_check_in_html_output( 'bbpress', $content, $args ) ) {
trx_addons_quickcal_load_scripts_front( true );
}
return $content;
}
}
if ( ! function_exists( 'trx_addons_quickcal_filter_head_output' ) ) {
add_filter( 'trx_addons_filter_page_head', 'trx_addons_quickcal_filter_head_output', 10, 1 );
/**
* Remove plugin-specific styles from the page head output if optimize CSS loading is 'full'
*
* @hooked trx_addons_filter_page_head
*
* @param string $content Page head content
*
* @return string Modified page head content
*/
function trx_addons_quickcal_filter_head_output( $content = '' ) {
if ( ! trx_addons_exists_quickcal() ) {
return $content;
}
return trx_addons_filter_head_output( 'quickcal', $content, array(
'check' => array(
'#<link[^>]*href=[\'"][^\'"]*/quickcal/[^>]*>#'
)
) );
}
}
if ( ! function_exists( 'trx_addons_quickcal_filter_body_output' ) ) {
add_filter( 'trx_addons_filter_page_content', 'trx_addons_quickcal_filter_body_output', 10, 1 );
/**
* Remove plugin-specific styles from the page body output if optimize CSS loading is 'full'
*
* @hooked trx_addons_filter_page_content
*
* @param string $content Page body content
*
* @return string Modified page body content
*/
function trx_addons_quickcal_filter_body_output( $content = '' ) {
if ( ! trx_addons_exists_quickcal() ) {
return $content;
}
return trx_addons_filter_body_output( 'quickcal', $content, array(
'check' => array(
'#<link[^>]*href=[\'"][^\'"]*/quickcal/[^>]*>#',
'#<script[^>]*src=[\'"][^\'"]*/quickcal/[^>]*>[\\s\\S]*</script>#U',
'#<script[^>]*id=[\'"]quickcal-[^>]*>[\\s\\S]*</script>#U'
)
) );
}
}
// Add shortcodes
//----------------------------------------------------------------------------
// Add shortcodes to Elementor
if ( trx_addons_exists_quickcal() && trx_addons_exists_elementor() && function_exists('trx_addons_elm_init') ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'quickcal/quickcal-sc-elementor.php';
}
// Add shortcodes to VC
if ( trx_addons_exists_quickcal() && trx_addons_exists_vc() && function_exists( 'trx_addons_vc_add_id_param' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'quickcal/quickcal-sc-vc.php';
}
// Demo data install
//----------------------------------------------------------------------------
// One-click import support
if ( is_admin() ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'quickcal/quickcal-demo-importer.php';
}
// OCDI support
if ( is_admin() && trx_addons_exists_quickcal() && function_exists( 'trx_addons_exists_ocdi' ) && trx_addons_exists_ocdi() ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_API . 'quickcal/quickcal-demo-ocdi.php';
}