PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 1.21
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v1.21
2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 1.45 All 41 releases
fluent-boards / app / Views / admin / menu.php

menu.php in FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration 1.21, at app/Views/admin/menu.php

52 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if (!defined('ABSPATH')) exit; // if accessed directly exit ?>
2 <div id="<?php echo esc_attr(sanitize_text_field($slug)); ?>-app"
3 class="warp fconnector_app">
4 <div class="fframe_app">
5 <div class="fframe_main-menu-items">
6 <div class="fframe_header_left">
7 <div class="menu_logo_holder">
8 <a href="<?php echo esc_url($baseUrl); ?>">
9 <img style="height: 30px;" src="<?php echo esc_url($icon); ?>"/>
10 <?php if(defined('FLUENT_BOARDS_PRO') && is_admin()): ?>
11 <span><?php esc_html_e('Pro', 'fluent-boards'); ?></span>
12 <?php endif; ?>
13 </a>
14 </div>
15 <div class="fframe_handheld"><span class="dashicons dashicons-menu-alt3"></span></div>
16 <ul class="fframe_menu">
17 <?php foreach ($menuItems as $item) { ?>
18 <?php $hasSubMenu = !empty($item['sub_items']); ?>
19 <li data-key="<?php echo esc_attr($item['key']); ?>"
20 class="fframe_menu_item <?php echo ($hasSubMenu) ? 'fframe_has_sub_items' : ''; ?> fframe_item_<?php echo esc_attr($item['key']); ?> <?php echo esc_attr($item['class'] ?? '') ?? ''; ?>">
21 <a class="fframe_menu_primary"
22 <?php if (!empty($item['target'])) : ?>target="_blank" rel="noopener" <?php endif; ?>
23 href="<?php echo esc_url($item['permalink']); ?>">
24 <?php echo esc_html(sanitize_text_field($item['label'])); ?>
25 <?php if(!empty($item['target'])): ?>
26 <i class="el-icon" data-v-6fbb019e="" style="font-size: 12px;"><svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" data-v-6fbb019e=""><path fill="currentColor" d="M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0z"></path><path fill="currentColor" d="M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"></path></svg></i>
27 <?php endif; ?>
28 <?php if ($hasSubMenu) { ?>
29 <span class="dashicons dashicons-arrow-down-alt2"></span>
30 <?php } ?></a>
31 <?php if ($hasSubMenu) { ?>
32 <div class="fframe_submenu_items">
33 <?php foreach ($item['sub_items'] as $sub_item) { ?>
34 <a href="<?php echo esc_url($sub_item['permalink']); ?>"><?php echo esc_attr($sub_item['label']); ?></a>
35 <?php } ?>
36 </div>
37 <?php } ?>
38 </li>
39 <?php } ?>
40 </ul>
41 </div>
42 <div class="fbs_menu_action">
43 <div class="fbs_menu_actions" id="fluent_app_actions"></div>
44 <?php do_action('fluent_boards/in_menu_actions'); ?>
45 </div>
46 </div>
47 <div class="fframe_body">
48 <div id="fluent-framework-app" class="fs_route_wrapper"></div>
49 </div>
50 </div>
51 </div>
52