PluginProbe
Fluent Support – Helpdesk & Customer Support Ticket System / 1.10.4
Fluent Support – Helpdesk & Customer Support Ticket System v1.10.4
2.4.0 2.3.2 2.3.1 2.3.0 2.2.1 2.2.0 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.4.0 1.4.1 1.4.2 1.4.5 1.4.6 1.4.7 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 68 releases
fluent-support / app / Views / admin / menu.php

menu.php in Fluent Support – Helpdesk & Customer Support Ticket System 1.10.4, at app/Views/admin/menu.php

59 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') or die; ?>
2 <div id='alpha_app'>
3 <div class="fframe_app">
4 <div class="fframe_main-menu-items">
5
6 <div class="menu_logo_holder">
7 <a href="<?php echo esc_url($base_url); ?>">
8 <img src="<?php echo esc_url($logo); ?>" />
9 </a>
10 </div>
11 <div class="fframe_handheld"><span class="dashicons dashicons-menu-alt3"></span></div>
12
13 <ul class="fframe_menu">
14 <?php foreach ($menuItems as $item): ?>
15 <?php $hasSubMenu = !empty($item['sub_items']); ?>
16 <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']); ?>">
17 <a class="fframe_menu_primary" href="<?php echo esc_url($item['permalink']); ?>">
18 <?php echo esc_attr($item['label']); ?>
19 <?php if($hasSubMenu){ ?>
20 <span class="dashicons dashicons-arrow-down-alt2"></span>
21 <?php } ?></a>
22 <?php if($hasSubMenu): ?>
23 <div class="fframe_submenu_items">
24 <?php foreach ($item['sub_items'] as $sub_item): ?>
25 <a href="<?php echo esc_url($sub_item['permalink']); ?>"><?php echo esc_attr($sub_item['label']); ?></a>
26 <?php endforeach; ?>
27 </div>
28 <?php endif; ?>
29 </li>
30 <?php endforeach; ?>
31 </ul>
32 <?php if($secondaryItems): ?>
33 <ul class="frame_secondary_menu fframe_menu">
34 <?php foreach ($secondaryItems as $item): ?>
35 <?php $hasSubMenu = !empty($item['sub_items']); ?>
36 <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']); ?>">
37 <a class="fframe_menu_primary" href="<?php echo esc_url($item['permalink']); ?>">
38 <?php echo esc_attr($item['label']); ?>
39 <?php if($hasSubMenu){ ?>
40 <span class="dashicons dashicons-arrow-down-alt2"></span>
41 <?php } ?></a>
42 <?php if($hasSubMenu): ?>
43 <div class="fframe_submenu_items">
44 <?php foreach ($item['sub_items'] as $sub_item): ?>
45 <a href="<?php echo esc_url($sub_item['permalink']); ?>"><?php echo esc_attr($sub_item['label']); ?></a>
46 <?php endforeach; ?>
47 </div>
48 <?php endif; ?>
49 </li>
50 <?php endforeach; ?>
51 </ul>
52 <?php endif; ?>
53 </div>
54 <div class="fframe_body">
55 <router-view></router-view>
56 </div>
57 </div>
58 </div>
59