| 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 |
|