PluginProbe
Quick Download Button / trunk
Quick Download Button vtrunk
trunk 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.4.0
quick-download-button / admin / views / leads.php

leads.php in Quick Download Button trunk, at admin/views/leads.php

32 lines 961 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) || exit;
3
4 QDBP_Leads_Table::process_bulk_action();
5
6 $table = new QDBP_Leads_Table();
7 $table->prepare_items();
8 $page_url = admin_url( 'admin.php?page=qdbp-leads' );
9
10 $export_url = wp_nonce_url(
11 add_query_arg( 'qdbp_export', 'leads', $page_url ),
12 'qdbp_export_leads'
13 );
14 ?>
15 <div class="wrap qdbp-wrap">
16 <h1 class="wp-heading-inline"><?php esc_html_e( 'Email Leads', 'quick-download-button' ); ?></h1>
17 <a href="<?php echo esc_url( $export_url ); ?>" class="page-title-action">
18 <?php esc_html_e( 'Export CSV', 'quick-download-button' ); ?>
19 </a>
20 <hr class="wp-header-end">
21
22 <form method="get">
23 <input type="hidden" name="page" value="qdbp-leads" />
24 <?php $table->search_box( __( 'Search emails', 'quick-download-button' ), 'lead-search' ); ?>
25 </form>
26
27 <form method="post">
28 <?php wp_nonce_field( 'bulk-leads' ); ?>
29 <?php $table->display(); ?>
30 </form>
31 </div>
32