false, // true | false. By default value is: false. 'left_navigation__default_view_mode' => 'compact', // '' | 'min' | 'compact' | 'max' | 'none'. By default value is: ''. 'title' => __( 'Days Availability', 'booking' ), // Title of TAB //FixIn: 9.8.15.2.2. 'hint' => __( 'Define available and unavailable days for your calendar(s).', 'booking' ), // Hint. 'page_title' => __( 'Days Availability', 'booking' ), // Title of Page. 'link' => '', // Can be skiped, then generated link based on Page and Tab tags. Or can be extenral link. 'position' => '', // 'left' / 'right' / ''. 'css_classes' => '', // CSS c l a s s(es). 'icon' => '', // Icon - link to the real PNG img. 'font_icon' => 'wpbc-bi-calendar2-check', // 'wpbc_icn_free_cancellation' // CSS definition of forn Icon. 'font_icon_right' => 'wpbc-bi-question-circle', 'default' => true, // Is this tab activated by default or not: true || false. 'disabled' => false, // Is this tab disbaled: true || false. 'hided' => false, // Is this tab hided: true || false. 'subtabs' => array(), 'folder_style' => 'order:91;', ); return $tabs; } /** * Show custom tabs for Toolbar at . - . R i g h t . s i d e. * * @param string $menu_in_page_tag - active page */ public function wpbc_toolbar_toolbar_tabs( $menu_in_page_tag ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing if ( ( $this->in_page() === $menu_in_page_tag ) && ( ( empty( $_GET['tab'] ) ) || ( 'availability' === $_GET['tab'] ) ) ) { // FixIn: 9.8.15.2.2. wpbc_bs_toolbar_tabs_html_container_start(); $escaped_search_request_params = $this->get_cleaned_params__saved_requestvalue_default(); // Check if by some reason, user was saved request without this parameter, then get default value. if ( ! empty( $escaped_search_request_params['ui_usr__availability_selected_toolbar'] ) ) { $selected_tab = $escaped_search_request_params['ui_usr__availability_selected_toolbar']; } else { $default_search_request_params = WPBC_AJX__Availability::request_rules_structure(); $selected_tab = $default_search_request_params ['ui_usr__availability_selected_toolbar']['default']; } wpbc_bs_display_tab( array( 'title' => __( 'Set Availability', 'booking' ) , 'hint' => array( 'title' => __('Availability' ,'booking') , 'position' => 'top' ) , 'onclick' => "jQuery('.ui_container_toolbar').hide();" . "jQuery('.ui_container_info').show();" . "jQuery('.wpbc_availability_support_tabs').removeClass('nav-tab-active');" . "jQuery(this).addClass('nav-tab-active');" . "jQuery('.nav-tab i.icon-white').removeClass('icon-white');" . "jQuery('.nav-tab-active i').addClass('icon-white');" /** * It will save such changes, and if we have selected bookings, then deselect them */ // . "wpbc_ajx_booking_send_search_request_with_params( { 'ui_usr__availability_selected_toolbar': 'filters' });" /** * It will save changes with NEXT search request, but not immediately * it is handy, in case if we have selected bookings, * we will not lose selection. */ . "wpbc_ajx_availability.search_set_param( 'ui_usr__availability_selected_toolbar', 'info' );" , 'font_icon' => 'wpbc-bi-calendar2-check' //'wpbc_icn_info_outline' , 'default' => ( 'info' == $selected_tab ) ? true : false //, 'position' => 'right' , 'css_classes' => 'wpbc_availability_support_tabs' ) ); wpbc_bs_display_tab( array( 'title' => __('Options', 'booking') , 'hint' => array( 'title' => __('User Options' ,'booking') , 'position' => 'top' ) , 'onclick' => "jQuery('.ui_container_toolbar').hide();" . "jQuery('.ui_container_options').show();" . "jQuery('.wpbc_availability_support_tabs').removeClass('nav-tab-active');" . "jQuery(this).addClass('nav-tab-active');" . "jQuery('.nav-tab i.icon-white').removeClass('icon-white');" . "jQuery('.nav-tab-active i').addClass('icon-white');" /** * It will save such changes, and if we have selected bookings, then deselect them */ // . "wpbc_ajx_booking_send_search_request_with_params( { 'ui_usr__availability_selected_toolbar': 'options' });" /** * It will save changes with NEXT search request, but not immediately * it is handy, in case if we have selected bookings, * we will not lose selection. */ . "wpbc_ajx_availability.search_set_param( 'ui_usr__availability_selected_toolbar', 'calendar_settings' );" , 'font_icon' => 'wpbc_icn_tune' , 'default' => ( 'calendar_settings' == $selected_tab ) ? true : false //, 'position' => 'right' , 'css_classes' => 'wpbc_availability_support_tabs' ) ); wpbc_bs_toolbar_tabs_html_container_end(); } } /** * Get sanitised request parameters. :: Firstly check if user saved it. :: Otherwise, check $_REQUEST. :: Otherwise get default. * * @return array|false */ public function get_cleaned_params__saved_requestvalue_default(){ $user_request = new WPBC_AJX__REQUEST( array( 'db_option_name' => 'booking_availability_request_params', 'user_id' => wpbc_get_current_user_id(), 'request_rules_structure' => WPBC_AJX__Availability::request_rules_structure() ) ); $escaped_request_params_arr = $user_request->get_sanitized__saved__user_request_params(); // Get Saved //Fix Calendar cell heights in versions older than // FixIn: 9.7.3.2. if ( ( false !== $escaped_request_params_arr ) && ( '' === $escaped_request_params_arr['calendar__view__cell_height'] ) ) { $user_request->user_request_params__db_delete(); // Delete from DB. } if ( false === $escaped_request_params_arr ) { // This request was not saved before, then get sanitized direct parameters, like: $_REQUEST['resource_id'] $request_prefix = false; $escaped_request_params_arr = $user_request->get_sanitized__in_request__value_or_default( $request_prefix ); // Direct: $_REQUEST['resource_id'] } // Direct links from other admin tools can intentionally open availability for a specific resource. // In that case this URL value must override previously saved user toolbar state. if ( false !== wpbc_get_direct_value_in_request( 'resource_id', false ) ) { $direct_request_params_arr = $user_request->get_sanitized__in_request__value_or_default( false ); if ( ! empty( $direct_request_params_arr['resource_id'] ) ) { $escaped_request_params_arr['resource_id'] = $direct_request_params_arr['resource_id']; } } //MU if ( class_exists( 'wpdev_bk_multiuser' ) ) { // Check if this MU user activated or superadmin, otherwise show warning if ( ! wpbc_is_mu_user_can_be_here('activated_user') ) return false; // Check if this MU user owner of this resource or superadmin, otherwise show warning if ( ! wpbc_is_mu_user_can_be_here( 'resource_owner', $escaped_request_params_arr['resource_id'] ) ) { $default_values = $user_request->get_request_rules__default(); $escaped_request_params_arr['resource_id'] = $default_values['resource_id']; } } return $escaped_request_params_arr; } public function content() { $this->css_fix(); do_action( 'wpbc_hook_settings_page_header', 'page_booking_availability'); // Define Notices Section and show some static messages, if needed. if ( ! wpbc_is_mu_user_can_be_here( 'activated_user' ) ) { return false; } // Check if MU user activated, otherwise show Warning message. // if ( ! wpbc_set_default_resource_to__get() ) return false; // Define default booking resources for $_GET and check if booking resource belong to user. // Get and escape request parameters //////////////////////////////////////////////////////////////////////// $escaped_request_params_arr = $this->get_cleaned_params__saved_requestvalue_default(); // During initial load of the page, we need to reset 'dates_selection' value in our saved parameter $escaped_request_params_arr['dates_selection'] = ''; $escaped_request_params_arr['calendar__start_week_day'] = intval(get_bk_option( 'booking_start_day_weeek' )); // Submit ///////////////////////////////////////////////////////////// $submit_form_name = 'wpbc_ajx_availability_form'; // Define form name ?>wpbc_toolbar_toolbar_tabs( $this->in_page() ); wpbc_ajx_availability__toolbar( $escaped_request_params_arr ); ?>