PluginProbe
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution / 1.5.02
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution v1.5.02
2.4.0 2.3.0 2.2.5 2.2.0 2.1.2 2.1.1 trunk 1.10.0 1.10.01 1.10.02 1.5.0 1.5.01 1.5.02 1.5.1 1.5.10 1.5.20 1.5.21 1.5.22 1.5.23 1.5.24 1.5.25 1.6.0 1.7.0 1.7.1 1.7.2 All 33 releases
fluent-booking / app / Views / admin / menu.php

menu.php in Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution 1.5.02, at app/Views/admin/menu.php

62 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined( 'ABSPATH' ) || exit; ?>
2
3 <div id="<?php echo esc_attr($slug); ?>-app" class="warp fconnector_app">
4 <div class="fframe_app">
5 <div class="fframe_main-menu-items">
6 <div class="menu_logo_holder">
7 <a href="<?php echo esc_url($baseUrl); ?>">
8 <img style="max-height: 40px;" src="<?php echo esc_url($logo); ?>" />
9 </a>
10 </div>
11 <div class="fframe_handheld">
12 <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="currentColor" d="M20 5V2H0v3h20zm0 6V8H0v3h20zm0 6v-3H0v3h20z"/></svg>
13 </div>
14
15 <ul class="fframe_menu">
16 <?php foreach ($menuItems as $item): ?>
17 <?php $hasSubMenu = !empty($item['sub_items']); ?>
18 <li data-key="<?php echo esc_attr($item['key']); ?>" class="fframe_menu_item <?php echo ($hasSubMenu) ? 'fframe_has_sub_items' : ''; ?> fframe_item_<?php echo esc_attr($item['key']); ?>">
19 <a class="fframe_menu_primary" href="<?php echo esc_url($item['permalink']); ?>">
20 <?php echo esc_attr($item['label']); ?>
21 <?php if($hasSubMenu){ ?>
22 <span class="dashicons dashicons-arrow-down-alt2"></span>
23 <?php } ?></a>
24 <?php if($hasSubMenu): ?>
25 <div class="fframe_submenu_items">
26 <?php foreach ($item['sub_items'] as $sub_item): ?>
27 <a href="<?php echo esc_url($sub_item['permalink']); ?>"><?php echo esc_attr($sub_item['label']); ?></a>
28 <?php endforeach; ?>
29 </div>
30 <?php endif; ?>
31 </li>
32 <?php endforeach; ?>
33 </ul>
34
35 <?php if(!empty($rightItems)): ?>
36 <ul class="fframe_menu fcal_secondary_menu">
37 <?php foreach ($rightItems as $item): ?>
38 <?php $hasSubMenu = !empty($item['sub_items']); ?>
39 <li data-key="<?php echo esc_attr($item['key']); ?>" class="fframe_menu_item <?php echo ($hasSubMenu) ? 'fframe_has_sub_items' : ''; ?> fframe_item_<?php echo esc_attr($item['key']); ?>">
40 <a class="fframe_menu_primary" href="<?php echo esc_url($item['permalink']); ?>">
41 <?php echo esc_attr($item['label']); ?>
42 <?php if($hasSubMenu){ ?>
43 <span class="dashicons dashicons-arrow-down-alt2"></span>
44 <?php } ?></a>
45 <?php if($hasSubMenu): ?>
46 <div class="fframe_submenu_items">
47 <?php foreach ($item['sub_items'] as $sub_item): ?>
48 <a href="<?php echo esc_url($sub_item['permalink']); ?>"><?php echo esc_attr($sub_item['label']); ?></a>
49 <?php endforeach; ?>
50 </div>
51 <?php endif; ?>
52 </li>
53 <?php endforeach; ?>
54 </ul>
55 <?php endif; ?>
56 </div>
57 <div class="fframe_body">
58 <div id="fluent-framework-app" class="fs_route_wrapper"></div>
59 </div>
60 </div>
61 </div>
62