![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/plugins/trx_addons/components/api/booked/ |
<?php /** * Plugin support: Booked Appointments (WPBakery support) * * @package ThemeREX Addons * @since v1.5 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { exit; } if ( ! function_exists( 'trx_addons_sc_booked_add_in_vc' ) ) { add_action( 'init', 'trx_addons_sc_booked_add_in_vc', 20 ); /** * Add core shortcodes of 'Booked Appointments' to the VC shortcodes list * * @hooked init, 20 */ function trx_addons_sc_booked_add_in_vc() { if ( ! trx_addons_exists_vc() || ! trx_addons_exists_booked() ) { return; } vc_lean_map( "booked-appointments", 'trx_addons_sc_booked_add_in_vc_params_ba'); class WPBakeryShortCode_Booked_Appointments extends WPBakeryShortCode {} vc_lean_map( "booked-calendar", 'trx_addons_sc_booked_add_in_vc_params_bc'); class WPBakeryShortCode_Booked_Calendar extends WPBakeryShortCode {} vc_lean_map( "booked-profile", 'trx_addons_sc_booked_add_in_vc_params_bp'); class WPBakeryShortCode_Booked_Profile extends WPBakeryShortCode {} } } if ( ! function_exists( 'trx_addons_sc_booked_add_in_vc_params_ba' ) ) { /** * Return array with parameters for shortcode 'Booked Appointments' for VC * * @return array Shortcode parameters */ function trx_addons_sc_booked_add_in_vc_params_ba() { return array( "base" => "booked-appointments", "name" => __("Booked Appointments", "trx_addons"), "description" => __("Display the currently logged in user's upcoming appointments", "trx_addons"), "category" => __('Content', 'trx_addons'), 'icon' => 'icon_trx_sc_booked_appointments', "class" => "trx_sc_single trx_sc_booked_appointments", "content_element" => true, "is_container" => false, "show_settings_on_create" => false, "params" => array() ); } } if ( ! function_exists( 'trx_addons_sc_booked_add_in_vc_params_bp' ) ) { /** * Return array with parameters for shortcode 'Booked Profile' for VC * * @return array Shortcode parameters */ function trx_addons_sc_booked_add_in_vc_params_bp() { return array( "base" => "booked-profile", "name" => __("Booked Profile", "trx_addons"), "description" => __("Display the currently logged in user's profile", "trx_addons"), "category" => __('Content', 'trx_addons'), 'icon' => 'icon_trx_sc_booked_profile', "class" => "trx_sc_single trx_sc_booked_profile", "content_element" => true, "is_container" => false, "show_settings_on_create" => false, "params" => array() ); } } if ( ! function_exists( 'trx_addons_sc_booked_add_in_vc_params_bc' ) ) { /** * Return array with parameters for shortcode 'Booked Calendar' for VC * * @return array Shortcode parameters */ function trx_addons_sc_booked_add_in_vc_params_bc() { return array( "base" => "booked-calendar", "name" => __("Booked Calendar", "trx_addons"), "description" => __("Insert booked calendar", "trx_addons"), "category" => __('Content', 'trx_addons'), 'icon' => 'icon_trx_sc_booked_calendar', "class" => "trx_sc_single trx_sc_booked_calendar", "content_element" => true, "is_container" => false, "show_settings_on_create" => true, "params" => array( array( "param_name" => "style", "heading" => esc_html__("Layout", "trx_addons"), "description" => esc_html__("Select style of the booked calendar", "trx_addons"), "admin_label" => true, "std" => "0", "value" => array_flip(array( 'calendar' => esc_html__('Calendar', 'trx_addons'), 'list' => esc_html__('List', 'trx_addons') )), "type" => "dropdown" ), array( "param_name" => "calendar", "heading" => esc_html__("Calendar", "trx_addons"), "description" => esc_html__("Select booked calendar to display", "trx_addons"), "admin_label" => true, "std" => "0", "value" => array_flip(trx_addons_array_merge( array( 0 => trx_addons_get_not_selected_text( esc_html__( 'Select calendar', 'trx_addons' ) ) ), trx_addons_get_list_terms(false, 'booked_custom_calendars' ) ) ), "type" => "dropdown" ), array( "param_name" => "year", "heading" => esc_html__("Year", "trx_addons"), "description" => esc_html__("Year to display on calendar by default", "trx_addons"), 'edit_field_class' => 'vc_col-sm-6', "admin_label" => true, "std" => date("Y"), "value" => date("Y"), "type" => "textfield" ), array( "param_name" => "month", "heading" => esc_html__("Month", "trx_addons"), "description" => esc_html__("Month to display on calendar by default", "trx_addons"), 'edit_field_class' => 'vc_col-sm-6', "admin_label" => true, "std" => date("m"), "value" => date("m"), "type" => "textfield" ) ) ); } }