PluginProbe
Booking Calendar / 11.6
Booking Calendar v11.6
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
booking / includes / ui_settings / parts / ui__nav_horis.php

ui__nav_horis.php in Booking Calendar 11.6, at includes/ui_settings/parts/ui__nav_horis.php

202 lines 8.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Admin Panel UI - Parts
4 *
5 * @version 1.2
6 * @package Any
7 * @category Page Structure in Admin Panel
8 * @author wpdevelop
9 *
10 * @web-site https://wpbookingcalendar.com/
11 * @email info@wpbookingcalendar.com
12 *
13 * @modified 2025-03-20
14 */
15
16 if ( ! defined( 'ABSPATH' ) ) {
17 exit; // Exit, if accessed directly.
18 }
19
20 /**
21 * Show Top Horisontal Navigation Bar
22 *
23 * @param array $args Navigation parameters. An active tab can set
24 * top_navigation_use_subtabs to render its subtabs in this
25 * bar instead of every top-level tab on the page.
26 *
27 * @return void
28 */
29 function wpbc_ui__top_horisontal_nav( $args =array() ) {
30
31 $defaults = array(
32 'attr' => array(),
33 );
34 $params = wp_parse_args( $args, $defaults );
35
36 $active_page_arr = array(
37 'active_page' => $args['active_page'], // wpbc-settings.
38 'active_tab' => $args ['active_tab'], // calendar_appearance.
39 'active_subtab' => $args['active_subtab'], // calendar_appearance_skin.
40 );
41
42 // Available Main Menu - slug => titles.
43 $show_these_pages_arr = array(
44 'wpbc' => __( 'Bookings', 'booking' ),
45 'wpbc-availability' => __( 'Availability', 'booking' ),
46 'wpbc-prices' => __( 'Prices', 'booking' ),
47 'wpbc-resources' => __( 'Resources', 'booking' ),
48 'wpbc-settings' => __( 'Settings', 'booking' ),
49 'wpbc-setup' => __( 'Setup', 'booking' ),
50 );
51 // Ability to click on panel, only if there 'min' class - panel minimized!
52 echo '<div class="wpbc_ui_el__horis_top_bar__wrapper">';
53
54 echo ' <div class="wpbc_ui_el__horis_top_bar__content">';
55
56 $main_page_slug = $active_page_arr['active_page'];
57 $page_title = $show_these_pages_arr[ $main_page_slug ];
58
59 // Loop to show all main sections in horisontal menu.
60 foreach ( $show_these_pages_arr as $main_page_slug => $page_title ) {
61
62 // Show only active page settings list.
63 if ( $main_page_slug !== $active_page_arr['active_page'] ) {
64 continue;
65 }
66 $page_item_arr = $args['page_nav_tabs'][ $main_page_slug ];
67 $active_tab = isset( $page_item_arr[ $active_page_arr['active_tab'] ] ) && is_array( $page_item_arr[ $active_page_arr['active_tab'] ] )
68 ? $page_item_arr[ $active_page_arr['active_tab'] ]
69 : array();
70
71 // Some focused settings pages use their subtabs as the horizontal page-level navigation.
72 if (
73 ! empty( $active_tab['top_navigation_use_subtabs'] )
74 && ! empty( $active_tab['subtabs'] )
75 && is_array( $active_tab['subtabs'] )
76 ) {
77 $page_item_arr = $active_tab['subtabs'];
78 }
79
80 do_action( 'hook__wpbc_ui__top_horisontal_nav__start', $active_page_arr['active_page'], $active_page_arr['active_tab'] ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
81
82 foreach ( $page_item_arr as $main_menu_slug => $menu_item_arr ) {
83 // Legacy hided/disabled flags control other navigation surfaces; the top bar uses its own explicit flag.
84 if ( ! empty( $menu_item_arr['top_navigation_hidden'] ) ) {
85 continue;
86 }
87
88 do_action( 'hook__wpbc_ui__top_horisontal_nav__item_start', $active_page_arr['active_page'], $active_page_arr['active_tab'], $main_menu_slug ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
89
90 wpbc_ui__horis_menu__item_main( $main_menu_slug, $menu_item_arr );
91
92 do_action( 'hook__wpbc_ui__top_horisontal_nav__item_end', $active_page_arr['active_page'], $active_page_arr['active_tab'], $main_menu_slug ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
93 }
94 do_action( 'hook__wpbc_ui__top_horisontal_nav__end', $active_page_arr['active_page'], $active_page_arr['active_tab'] ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
95
96 // wpbc_ui_el__divider_vertical();
97 } // Loop to show all main sections in horisontal menu.
98 echo ' </div><!-- wpbc_ui_el__horis_top_bar__content -->';
99
100 echo '</div><!-- wpbc_ui_el__horis_top_bar__wrapper -->';
101 }
102
103
104 /**
105 * Remove New labels from titles rendered in the top horizontal navigation.
106 *
107 * @param string $title Horizontal navigation title.
108 *
109 * @return string
110 */
111 function wpbc_ui__horis_menu__item_main__remove_new_label( $title ) {
112
113 if ( ! is_string( $title ) || '' === $title ) {
114 return $title;
115 }
116
117 $filtered_title = preg_replace(
118 '/<span\b[^>]*\bclass\s*=\s*(["\'])[^"\']*\bwpbc_new_label\b[^"\']*\1[^>]*>.*?<\/span>(?:\s|&nbsp;)*/is',
119 '',
120 $title
121 );
122
123 return ( null === $filtered_title ) ? $title : $filtered_title;
124 }
125 add_filter( 'wpbc_ui__horis_menu__item_main__title', 'wpbc_ui__horis_menu__item_main__remove_new_label', PHP_INT_MAX );
126
127
128 /**
129 * Show Horisontal - "Menu Item".
130 *
131 * @param string $menu_slug - 'calendar_appearance'.
132 * @param array $menu_item_arr - [ [title] => Skin
133 * [page_title] => Calendar General Settings 3
134 * [hint] => Calendar General Settings 2
135 * [link] =>
136 * [position] =>
137 * [css_classes] =>
138 * [folder_style] => order:93;
139 * [icon] =>
140 * [font_icon] => wpbc-bi-calendar2-range
141 * [default] =>
142 * [disabled] =>
143 * [hided] =>
144 * [top_navigation_hidden] =>
145 * [is_active] => 1
146 * [url] => http://beta/wp-admin/admin.php?page=wpbc-settings&#038;tab=calendar_appearance
147 * [subtabs] => [....]
148 * ]
149 *
150 * @return void
151 */
152 function wpbc_ui__horis_menu__item_main( $menu_slug, $menu_item_arr ) {
153
154 $defaults = array(
155 'title' => '',
156 'page_title' => '',
157 'hint' => '',
158 'link' => '',
159 'position' => '',
160 'css_classes' => '',
161 'folder_style' => '',
162 'icon' => '',
163 'font_icon' => '',
164 'default' => false,
165 'disabled' => false,
166 'hided' => false,
167 'top_navigation_hidden' => false,
168 'is_active' => 0,
169 'url' => '',
170 'subtabs' => array(),
171 );
172 $menu_item_arr = wp_parse_args( $menu_item_arr, $defaults );
173 $folder_style = ( ! empty( $menu_item_arr['folder_style'] ) ) ? esc_attr( $menu_item_arr['folder_style'] ) : ''; // FixIn: 11.4.2.
174
175 /**
176 * Filter the title displayed in the top horizontal navigation.
177 *
178 * @param string $title Horizontal navigation title.
179 * @param string $menu_slug Menu item slug.
180 * @param array $menu_item_arr Complete menu item configuration.
181 */
182 $menu_item_arr['title'] = apply_filters( 'wpbc_ui__horis_menu__item_main__title', $menu_item_arr['title'], $menu_slug, $menu_item_arr );
183
184 ?><div class="wpbc_ui_el__horis_nav_item wpbc_ui_el__horis_nav_item__<?php echo esc_attr( $menu_slug ); ?> <?php echo ( ! empty( $menu_item_arr['is_active'] ) ) ? ' active ' : ''; ?>"
185 style="<?php echo esc_attr( $folder_style ); ?>">
186 <?php
187 // Single Item.
188 ?>
189 <a href="<?php echo esc_url( $menu_item_arr['url'] ); ?>"
190 class="wpbc_ui_el__horis_nav_item__a wpbc_ui_el__horis_nav_item__single">
191 <?php if ( ! empty( $menu_item_arr['font_icon'] ) ) { ?>
192 <i class="wpbc_ui_el__horis_nav_icon tooltip_top menu_icon icon-1x <?php echo esc_attr( $menu_item_arr['font_icon'] ); ?>"
193 data-original-title="<?php echo esc_attr( $menu_item_arr['title'] ); ?>"></i>
194 <?php } ?>
195 <span class="wpbc_ui_el__horis_nav_title"><?php
196 echo wp_kses_post( $menu_item_arr['title'] );
197 ?></span>
198 </a>
199 </div>
200 <?php
201 }
202