PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.4
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.4
1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 trunk 1.2.0 All 47 releases
fluent-cart / app / Views / admin / admin_product_menu.php

admin_product_menu.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler 1.6.4, at app/Views/admin/admin_product_menu.php

32 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
2 <div class="fct-admin-product-header">
3 <div>
4 <div class="fct-admin-product-info">
5 <a href="<?php echo esc_url($products_url ??''); ?>" class="back-arrow">
6 <svg xmlns="http://www.w3.org/2000/svg" width="16" height="10" viewBox="0 0 16 10" fill="none">
7 <path d="M2.1665 5L14.6665 4.9998" stroke="currentColor" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
8 <path d="M5.49992 0.833008L2.04036 4.29257C1.70703 4.6259 1.54036 4.79257 1.54036 4.99967C1.54036 5.20678 1.70703 5.37345 2.04036 5.70678L5.49992 9.16634" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9 </svg>
10 </a>
11 <span class="product-name"><?php echo esc_html($product_name); ?></span>
12 <span class="product-id"> #<?php echo esc_html($product_id); ?></span>
13 <span class="badge <?php echo (esc_attr($status) == 'draft') ? 'info' : ((esc_attr($status) == 'publish') ? 'success' : ((esc_attr($status) == 'future') ? 'warning' : '')); ?>">
14 <?php echo esc_html($status); ?>
15 </span>
16 </div>
17
18 <ul class="fct-admin-product-menu">
19 <?php foreach ($menu_items as $itemSlug => $menu_item): ?>
20 <li class="fct_menu_<?php echo esc_attr($itemSlug); ?> <?php echo ($active == $itemSlug) ? 'active-menu' : ''; ?>">
21 <a href="<?php echo esc_url($menu_item['link']); ?>">
22 <?php echo esc_attr($menu_item['label']); ?>
23 <?php echo esc_html($active === $itemSlug); ?>
24 </a>
25 </li>
26 <?php endforeach; ?>
27 </ul>
28 </div>
29
30 <div id="fct-admin-product-header-buttons"></div>
31 </div>
32