html-options-list.php
38 lines
| 1 | <div class="wrap" id="acfe-admin-options"> |
| 2 | |
| 3 | <h1 class="wp-heading-inline"><?php _e('Options'); ?></h1> <span style="padding: 4px 6px;border-radius: 2px;background: #555;color: #fff;position: relative;top: -3px;font-weight: 600;margin-left: 4px;">BETA</span> |
| 4 | <a href="<?php echo sprintf('?page=%s&action=add', esc_attr($_REQUEST['page'])); ?>" class="page-title-action"><?php _e('Add New'); ?></a> |
| 5 | |
| 6 | <hr class="wp-header-end" /> |
| 7 | |
| 8 | <div id="poststuff"> |
| 9 | |
| 10 | <div id="post-body" class="metabox-holder"> |
| 11 | <div id="post-body-content"> |
| 12 | <div class="meta-box-sortables ui-sortable"> |
| 13 | <form method="post"> |
| 14 | |
| 15 | <?php |
| 16 | |
| 17 | // WP List |
| 18 | $acfe_options_list = new ACFE_Admin_Options_List(); |
| 19 | |
| 20 | // Prepare items |
| 21 | $acfe_options_list->prepare_items(); |
| 22 | |
| 23 | $acfe_options_list->search_box('Search', 'search'); |
| 24 | |
| 25 | $acfe_options_list->display(); |
| 26 | |
| 27 | ?> |
| 28 | |
| 29 | </form> |
| 30 | </div> |
| 31 | </div> |
| 32 | </div> |
| 33 | |
| 34 | <br class="clear" /> |
| 35 | |
| 36 | </div> |
| 37 | |
| 38 | </div> |