help-tab
4 years ago
page
4 years ago
edit-actions.php
4 years ago
edit-addon.php
4 years ago
edit-column.php
4 years ago
edit-columns.php
4 years ago
edit-menu.php
4 years ago
edit-submenu.php
4 years ago
edit-tabmenu.php
4 years ago
header.php
4 years ago
list-screen-settings-mockup.php
4 years ago
loading-message.php
4 years ago
menu.php
4 years ago
mini-tooltip.php
4 years ago
modal-pro.php
4 years ago
side-banner.php
4 years ago
side-feedback.php
4 years ago
side-support.php
4 years ago
table.php
4 years ago
tooltip-body.php
4 years ago
tooltip-label.php
4 years ago
wrap.php
4 years ago
edit-menu.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | ?> |
| 8 | |
| 9 | <div class="menu <?php echo $this->class; ?>"> |
| 10 | <form> |
| 11 | <input type="hidden" name="page" value="<?php echo esc_attr( \AC\Admin\Admin::NAME ); ?>"> |
| 12 | |
| 13 | <?php |
| 14 | $select = new \AC\Form\Element\Select( 'list_screen', $this->items ); |
| 15 | |
| 16 | $select->set_value( $this->current ) |
| 17 | ->set_attribute( 'title', __( 'Select type', 'codepress-admin-columns' ) ) |
| 18 | ->set_attribute( 'id', 'ac_list_screen' ); |
| 19 | |
| 20 | echo $select->render(); |
| 21 | |
| 22 | ?> |
| 23 | |
| 24 | <span class="spinner"></span> |
| 25 | |
| 26 | <?php if ( $this->screen_link ) : ?> |
| 27 | <a href="<?php echo esc_url( $this->screen_link ); ?>" class="page-title-action view-link"><?php esc_html_e( 'View', 'codepress-admin-columns' ); ?></a> |
| 28 | <?php endif; ?> |
| 29 | </form> |
| 30 | </div> |