![]() 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/gg.corals.io/wp-content/plugins/trx_addons/components/api/booked/ |
<?php /** * Plugin support: Booked Appointments (WPBakery support) * * @package WordPress * @subpackage ThemeREX Addons * @since v1.5 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { die( '-1' ); } // Add [cff] in the VC shortcodes list if (!function_exists('trx_addons_sc_booked_add_in_vc')) { 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 {} } add_action('init', 'trx_addons_sc_booked_add_in_vc', 20); } // Params for Booked Appointments if (!function_exists('trx_addons_sc_booked_add_in_vc_params_ba')) { 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() ); } } // Params for Booked Profile if (!function_exists('trx_addons_sc_booked_add_in_vc_params_bp')) { 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() ); } } // Params for Booked Calendar if (!function_exists('trx_addons_sc_booked_add_in_vc_params_bc')) { 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 => 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" ) ) ); } }