help-tab
5 years ago
page
5 years ago
edit-actions.php
5 years ago
edit-addon.php
5 years ago
edit-column.php
5 years ago
edit-columns.php
5 years ago
edit-menu.php
5 years ago
edit-submenu.php
5 years ago
edit-tabmenu.php
5 years ago
loading-message.php
5 years ago
menu.php
5 years ago
mini-tooltip.php
5 years ago
modal-pro.php
5 years ago
side-banner.php
5 years ago
side-feedback.php
5 years ago
side-support.php
5 years ago
table.php
5 years ago
tooltip-body.php
5 years ago
tooltip-label.php
5 years ago
wrap.php
5 years ago
menu.php
19 lines
| 1 | <h1 class="nav-tab-wrapper cpac-nav-tab-wrapper"> |
| 2 | <?php |
| 3 | /** |
| 4 | * @var \AC\Admin\Menu\Item $menu_item |
| 5 | */ |
| 6 | foreach ( $this->menu_items as $menu_item ) : |
| 7 | |
| 8 | $class = ''; |
| 9 | |
| 10 | if ( $this->current === $menu_item->get_slug() ) { |
| 11 | $class = ' nav-tab-active'; |
| 12 | } |
| 13 | |
| 14 | ?> |
| 15 | <a href="<?= esc_url( $menu_item->get_url() ); ?>" class="nav-tab <?= esc_attr( $class ); ?>"> |
| 16 | <?= $menu_item->get_label(); ?> |
| 17 | </a> |
| 18 | <?php endforeach; ?> |
| 19 | </h1> |