| 1 |
<?php |
| 2 |
$plus_icon_svg = "<span class=''><img src='". POLL_MAKER_AYS_ADMIN_URL ."/images/icons/add-new.svg'></span>"; |
| 3 |
?> |
| 4 |
|
| 5 |
<div class="wrap ays-poll-list-table ays_poll_categories_list_table"> |
| 6 |
<div class="ays-poll-heading-box"> |
| 7 |
<div class="ays-poll-wordpress-user-manual-box"> |
| 8 |
<a href="https://ays-pro.com/wordpress-poll-maker-user-manual" target="_blank" style="text-decoration: none;font-size: 13px;"> |
| 9 |
<i class="ays_poll_fas ays_fa_file_text"></i> |
| 10 |
<span style="margin-left: 3px;text-decoration: underline;"><?php echo __("View Documentation", "poll-maker"); ?></span> |
| 11 |
</a> |
| 12 |
</div> |
| 13 |
</div> |
| 14 |
<h1 class="wp-heading-inline"> |
| 15 |
<?php |
| 16 |
echo esc_html(get_admin_page_title()); |
| 17 |
echo sprintf('<a href="?page=%s&action=%s" class="page-title-action button-primary ays-poll-add-new-cat-button ays-poll-add-new-button-new-design"> %s ' . __('Add New', "poll-maker") . '</a>', esc_attr($_REQUEST['page']), 'add', $plus_icon_svg); |
| 18 |
?> |
| 19 |
</h1> |
| 20 |
|
| 21 |
<div id="poststuff"> |
| 22 |
<div id="post-body" class="metabox-holder ays-poll-maker-categories-list-tables"> |
| 23 |
<div id="post-body-content"> |
| 24 |
<div class="meta-box-sortables ui-sortable"> |
| 25 |
<form method="post"> |
| 26 |
<?php |
| 27 |
$this->cats_obj->prepare_items(); |
| 28 |
$search = __("Search", "poll-maker"); |
| 29 |
$this->cats_obj->search_box($search, $this->plugin_name); |
| 30 |
$this->cats_obj->display(); |
| 31 |
?> |
| 32 |
</form> |
| 33 |
</div> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
<br class="clear"> |
| 37 |
</div> |
| 38 |
</div> |
| 39 |
|