PluginProbe
Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls / 5.6.0
Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls v5.6.0
6.5.0 6.4.9 6.4.8 6.4.7 6.4.6 6.4.5 6.4.4 6.4.3 6.4.2 6.4.1 6.4.0 6.3.9 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 5.6.0 5.6.1 5.6.2 5.6.3 5.6.4 5.6.5 5.6.6 All 153 releases
poll-maker / admin / partials / categories / poll-maker-ays-categories-display.php

poll-maker-ays-categories-display.php in Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls 5.6.0, at admin/partials/categories/poll-maker-ays-categories-display.php

39 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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