| 1 |
<?php |
| 2 |
/** |
| 3 |
* Donor List Table Class. |
| 4 |
* |
| 5 |
* The list view under WP-Admin > Donations > Donors. |
| 6 |
* |
| 7 |
* @package Give |
| 8 |
* @subpackage Admin/Reports |
| 9 |
* @copyright Copyright (c) 2016, GiveWP |
| 10 |
* @license https://opensource.org/licenses/gpl-license GNU Public License |
| 11 |
* @since 1.0 |
| 12 |
*/ |
| 13 |
|
| 14 |
// Exit if accessed directly. |
| 15 |
if ( ! defined( 'ABSPATH' ) ) { |
| 16 |
exit; |
| 17 |
} |
| 18 |
|
| 19 |
// Load WP_List_Table if not loaded. |
| 20 |
if ( ! class_exists( 'WP_List_Table' ) ) { |
| 21 |
require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
| 22 |
} |
| 23 |
|
| 24 |
/** |
| 25 |
* Give_Donor_List_Table Class. |
| 26 |
* |
| 27 |
* @since 1.0 |
| 28 |
*/ |
| 29 |
class Give_Donor_List_Table extends WP_List_Table { |
| 30 |
|
| 31 |
/** |
| 32 |
* Number of items per page. |
| 33 |
* |
| 34 |
* @var int |
| 35 |
* @since 1.0 |
| 36 |
*/ |
| 37 |
public $per_page = 30; |
| 38 |
|
| 39 |
/** |
| 40 |
* Number of donors found. |
| 41 |
* |
| 42 |
* @var int |
| 43 |
* @since 1.0 |
| 44 |
*/ |
| 45 |
public $count = 0; |
| 46 |
|
| 47 |
/** |
| 48 |
* Total donors. |
| 49 |
* |
| 50 |
* @var int |
| 51 |
* @since 1.0 |
| 52 |
*/ |
| 53 |
public $total = 0; |
| 54 |
|
| 55 |
/** |
| 56 |
* Get things started. |
| 57 |
* |
| 58 |
* @since 1.0 |
| 59 |
* @see WP_List_Table::__construct() |
| 60 |
*/ |
| 61 |
public function __construct() { |
| 62 |
// Set parent defaults. |
| 63 |
parent::__construct( |
| 64 |
[ |
| 65 |
'singular' => __( 'Donor', 'give' ), // Singular name of the listed records. |
| 66 |
'plural' => __( 'Donors', 'give' ), // Plural name of the listed records. |
| 67 |
'ajax' => false, // Does this table support ajax?. |
| 68 |
] |
| 69 |
); |
| 70 |
|
| 71 |
} |
| 72 |
/** |
| 73 |
* Add donors search filter. |
| 74 |
* |
| 75 |
* @since 3.5.0 Escape search query string. |
| 76 |
* @since 2.4.0 |
| 77 |
* @return void |
| 78 |
*/ |
| 79 |
public function advanced_filters() { |
| 80 |
$start_date = isset( $_GET['start-date'] ) ? strtotime( give_clean( $_GET['start-date'] ) ) : ''; |
| 81 |
$end_date = isset( $_GET['end-date'] ) ? strtotime( give_clean( $_GET['end-date'] ) ) : ''; |
| 82 |
$status = isset( $_GET['status'] ) ? give_clean( $_GET['status'] ) : ''; |
| 83 |
$donor = isset( $_GET['donor'] ) ? absint( $_GET['donor'] ) : ''; |
| 84 |
$search = $this->get_search(); |
| 85 |
$form_id = ! empty( $_GET['form_id'] ) ? absint( $_GET['form_id'] ) : 0; |
| 86 |
?> |
| 87 |
<div id="give-donor-filters" class="give-filters"> |
| 88 |
<div class="give-donor-search-box"> |
| 89 |
<input type="text" id="give-donors-search-input" placeholder="<?php |
| 90 |
_e('Name, Email, or Donor ID', 'give'); ?>" name="s" value="<?php |
| 91 |
echo esc_attr($search); ?>"> |
| 92 |
<?php |
| 93 |
submit_button( |
| 94 |
__( 'Search', 'give' ), |
| 95 |
'button', |
| 96 |
false, |
| 97 |
false, |
| 98 |
[ |
| 99 |
'ID' => 'donor-search-submit', |
| 100 |
] |
| 101 |
); |
| 102 |
?> |
| 103 |
</div> |
| 104 |
<div class="give-filter give-filter-half"> |
| 105 |
<label for="start-date" |
| 106 |
class="give-start-date-label"><?php _e( 'Start Date', 'give' ); ?></label> |
| 107 |
<input type="text" |
| 108 |
id="start-date" |
| 109 |
name="start-date" |
| 110 |
class="give_datepicker" |
| 111 |
autocomplete="off" |
| 112 |
value="<?php echo $start_date ? date_i18n( give_date_format(), $start_date ) : ''; ?>" |
| 113 |
data-standard-date="<?php echo $start_date ? date( 'Y-m-d', $start_date ) : $start_date; ?>" |
| 114 |
placeholder="<?php _e( 'Start Date', 'give' ); ?>" |
| 115 |
/> |
| 116 |
</div> |
| 117 |
<div class="give-filter give-filter-half"> |
| 118 |
<label for="end-date" class="give-end-date-label"><?php _e( 'End Date', 'give' ); ?></label> |
| 119 |
<input type="text" |
| 120 |
id="end-date" |
| 121 |
name="end-date" |
| 122 |
class="give_datepicker" |
| 123 |
autocomplete="off" |
| 124 |
value="<?php echo $end_date ? date_i18n( give_date_format(), $end_date ) : ''; ?>" |
| 125 |
data-standard-date="<?php echo $end_date ? date( 'Y-m-d', $end_date ) : $end_date; ?>" |
| 126 |
placeholder="<?php _e( 'End Date', 'give' ); ?>" |
| 127 |
/> |
| 128 |
</div> |
| 129 |
<div id="give-payment-form-filter" class="give-filter"> |
| 130 |
<label for="give-donation-forms-filter" |
| 131 |
class="give-donation-forms-filter-label"><?php _e( 'Form', 'give' ); ?></label> |
| 132 |
<?php |
| 133 |
// Filter Donations by Donation Forms. |
| 134 |
echo Give()->html->forms_dropdown( |
| 135 |
[ |
| 136 |
'name' => 'form_id', |
| 137 |
'id' => 'give-donation-forms-filter', |
| 138 |
'class' => 'give-donation-forms-filter', |
| 139 |
'selected' => $form_id, // Make sure to have $form_id set to 0, if there is no selection. |
| 140 |
'chosen' => true, |
| 141 |
'number' => 30, |
| 142 |
] |
| 143 |
); |
| 144 |
?> |
| 145 |
</div> |
| 146 |
|
| 147 |
<?php |
| 148 |
/** |
| 149 |
* Action to add hidden fields and HTML in donor search. |
| 150 |
* |
| 151 |
* @since 2.4.0 |
| 152 |
*/ |
| 153 |
do_action( 'give_donor_table_advanced_filters' ); |
| 154 |
|
| 155 |
if ( ! empty( $status ) ) { |
| 156 |
echo sprintf( '<input type="hidden" name="status" value="%s"/>', esc_attr( $status ) ); |
| 157 |
} |
| 158 |
|
| 159 |
if ( ! empty( $donor ) ) { |
| 160 |
echo sprintf( '<input type="hidden" name="donor" value="%s"/>', absint( $donor ) ); |
| 161 |
} |
| 162 |
?> |
| 163 |
|
| 164 |
<div class="give-filter"> |
| 165 |
<?php submit_button( __( 'Apply', 'give' ), 'secondary', '', false ); ?> |
| 166 |
<?php |
| 167 |
// Clear active filters button. |
| 168 |
if ( ! empty( $start_date ) || ! empty( $end_date ) || ! empty( $donor ) || ! empty( $search ) || ! empty( $status ) || ! empty( $form_id ) ) : |
| 169 |
?> |
| 170 |
<a href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-donors' ); ?>" |
| 171 |
class="button give-clear-filters-button"><?php _e( 'Clear Filters', 'give' ); ?></a> |
| 172 |
<?php endif; ?> |
| 173 |
</div> |
| 174 |
</div> |
| 175 |
|
| 176 |
<?php |
| 177 |
} |
| 178 |
|
| 179 |
/** |
| 180 |
* This function renders most of the columns in the list table. |
| 181 |
* |
| 182 |
* @param array $donor Contains all the data of the donors. |
| 183 |
* @param string $column_name The name of the column. |
| 184 |
* |
| 185 |
* @access public |
| 186 |
* @since 1.0 |
| 187 |
* |
| 188 |
* @return string Column Name. |
| 189 |
*/ |
| 190 |
public function column_default( $donor, $column_name ) { |
| 191 |
|
| 192 |
switch ( $column_name ) { |
| 193 |
|
| 194 |
case 'num_donations': |
| 195 |
$value = sprintf( |
| 196 |
'<a href="%s">%s</a>', |
| 197 |
admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&donor=' . absint( $donor['id'] ) ), |
| 198 |
esc_html( $donor['num_donations'] ) |
| 199 |
); |
| 200 |
break; |
| 201 |
|
| 202 |
case 'amount_spent': |
| 203 |
$value = give_currency_filter( give_format_amount( $donor[ $column_name ], [ 'sanitize' => false ] ) ); |
| 204 |
break; |
| 205 |
|
| 206 |
case 'date_created': |
| 207 |
$value = date_i18n( give_date_format(), strtotime( $donor['date_created'] ) ); |
| 208 |
break; |
| 209 |
|
| 210 |
case 'email': |
| 211 |
$value = esc_html( $donor[ $column_name ] ); |
| 212 |
break; |
| 213 |
|
| 214 |
default: |
| 215 |
$value = isset( $donor[ $column_name ] ) ? $donor[ $column_name ] : null; |
| 216 |
break; |
| 217 |
} |
| 218 |
|
| 219 |
return apply_filters( "give_donors_column_{$column_name}", $value, $donor['id'] ); |
| 220 |
|
| 221 |
} |
| 222 |
|
| 223 |
/** |
| 224 |
* For CheckBox Column |
| 225 |
* |
| 226 |
* @param array $donor Donor Data. |
| 227 |
* |
| 228 |
* @access public |
| 229 |
* @since 1.8.16 |
| 230 |
* |
| 231 |
* @return string |
| 232 |
*/ |
| 233 |
public function column_cb( $donor ) { |
| 234 |
return sprintf( |
| 235 |
'<input class="donor-selector" type="checkbox" name="donor[]" value="%1$d" data-name="%2$s" />', |
| 236 |
$donor['id'], |
| 237 |
esc_attr( $donor['name'] ) |
| 238 |
); |
| 239 |
} |
| 240 |
|
| 241 |
/** |
| 242 |
* Column name. |
| 243 |
* |
| 244 |
* @param array $donor Donor Data. |
| 245 |
* |
| 246 |
* @access public |
| 247 |
* @since 1.0 |
| 248 |
* |
| 249 |
* @return string |
| 250 |
*/ |
| 251 |
public function column_name( $donor ) { |
| 252 |
|
| 253 |
// Get donor's initials for non-gravatars |
| 254 |
$title_prefix = Give()->donor_meta->get_meta( $donor['id'], '_give_donor_title_prefix', true ); |
| 255 |
$donor_name_without_prefix = trim( str_replace( $title_prefix, '', $donor['name'] ) ); |
| 256 |
$donor_name_array = explode( ' ', $donor_name_without_prefix ); |
| 257 |
$donor_name_args['firstname'] = ! empty( $donor_name_array[0] ) ? $donor_name_array[0] : ''; |
| 258 |
$donor_name_args['lastname'] = ! empty( $donor_name_array[1] ) ? $donor_name_array[1] : ''; |
| 259 |
$donor_name_initial = give_get_name_initial( $donor_name_args ); |
| 260 |
|
| 261 |
$donation_gravatar_image = sprintf( |
| 262 |
'<span class="give-donor__image give-donor-admin-avatar" data-donor_email="%1$s" data-has-valid-gravatar="%2$s">%3$s</span>', |
| 263 |
md5( strtolower( trim( $donor['email'] ) ) ), |
| 264 |
absint( give_validate_gravatar( $donor['email'] ) ), |
| 265 |
esc_attr( $donor_name_initial ) |
| 266 |
); |
| 267 |
|
| 268 |
$name = ! empty( $donor['name'] ) |
| 269 |
? sprintf( |
| 270 |
'%1$s<span class="give-donor-name-text">%2$s</span>', |
| 271 |
$donation_gravatar_image, |
| 272 |
esc_attr( $donor['name'] ) |
| 273 |
) |
| 274 |
: sprintf( |
| 275 |
'<em>%1$s</em>', |
| 276 |
__( 'Unnamed Donor', 'give' ) |
| 277 |
); |
| 278 |
|
| 279 |
$view_url = admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=legacy-overview&id=' . $donor['id'] ); |
| 280 |
$actions = $this->get_row_actions( $donor ); |
| 281 |
|
| 282 |
return sprintf( |
| 283 |
'<a href="%1$s" class="give-donor-name">%2$s</a>%3$s', |
| 284 |
esc_url( $view_url ), |
| 285 |
$name, |
| 286 |
$this->row_actions( $actions ) |
| 287 |
); |
| 288 |
} |
| 289 |
|
| 290 |
/** |
| 291 |
* Retrieve the table columns. |
| 292 |
* |
| 293 |
* @access public |
| 294 |
* @since 1.0 |
| 295 |
* |
| 296 |
* @return array $columns Array of all the list table columns. |
| 297 |
*/ |
| 298 |
public function get_columns() { |
| 299 |
$columns = [ |
| 300 |
'cb' => '<input type="checkbox" />', // Render a checkbox instead of text. |
| 301 |
'name' => __( 'Name', 'give' ), |
| 302 |
'email' => __( 'Email', 'give' ), |
| 303 |
'num_donations' => __( 'Donations', 'give' ), |
| 304 |
'amount_spent' => __( 'Total Donated', 'give' ), |
| 305 |
'date_created' => __( 'Date Created', 'give' ), |
| 306 |
]; |
| 307 |
|
| 308 |
return apply_filters( 'give_list_donors_columns', $columns ); |
| 309 |
|
| 310 |
} |
| 311 |
|
| 312 |
/** |
| 313 |
* Get the sortable columns. |
| 314 |
* |
| 315 |
* @access public |
| 316 |
* @since 2.1 |
| 317 |
* @return array Array of all the sortable columns. |
| 318 |
*/ |
| 319 |
public function get_sortable_columns() { |
| 320 |
|
| 321 |
$columns = [ |
| 322 |
'date_created' => [ 'date_created', true ], |
| 323 |
'name' => [ 'name', true ], |
| 324 |
'num_donations' => [ 'purchase_count', false ], |
| 325 |
'amount_spent' => [ 'purchase_value', false ], |
| 326 |
]; |
| 327 |
|
| 328 |
return apply_filters( 'give_list_donors_sortable_columns', $columns ); |
| 329 |
} |
| 330 |
|
| 331 |
/** |
| 332 |
* Retrieve row actions. |
| 333 |
* |
| 334 |
* @param array $donor Donor Data. |
| 335 |
* |
| 336 |
* @since 1.7 |
| 337 |
* @access public |
| 338 |
* |
| 339 |
* @return array An array of action links. |
| 340 |
*/ |
| 341 |
public function get_row_actions( $donor ) { |
| 342 |
|
| 343 |
$actions = [ |
| 344 |
'id' => '<span class="give-donor-id">ID: ' . $donor['id'] . ' </span>', |
| 345 |
'view' => sprintf( '<a href="%1$s" aria-label="%2$s">%3$s</a>', admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=legacy-overview&id=' . $donor['id'] ), sprintf( esc_attr__( 'View "%s"', 'give' ), esc_attr( $donor['name'] ) ), __( 'View Donor', 'give' ) ), |
| 346 |
'delete' => sprintf( '<a class="%1$s" data-id="%2$s" href="#" aria-label="%3$s">%4$s</a>', 'give-single-donor-delete', $donor['id'], sprintf( esc_attr__( 'Delete "%s"', 'give' ), esc_attr( $donor['name'] ) ), __( 'Delete', 'give' ) ), |
| 347 |
]; |
| 348 |
|
| 349 |
return apply_filters( 'give_donor_row_actions', $actions, $donor ); |
| 350 |
|
| 351 |
} |
| 352 |
|
| 353 |
/** |
| 354 |
* Retrieve the current page number. |
| 355 |
* |
| 356 |
* @access public |
| 357 |
* @since 1.0 |
| 358 |
* |
| 359 |
* @return int Current page number. |
| 360 |
*/ |
| 361 |
public function get_paged() { |
| 362 |
return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
| 363 |
} |
| 364 |
|
| 365 |
/** |
| 366 |
* Retrieves the search query string. |
| 367 |
* |
| 368 |
* @access public |
| 369 |
* @since 3.5.0 Remove escape function |
| 370 |
* @since 1.0 |
| 371 |
* |
| 372 |
* @return mixed string If search is present, false otherwise. |
| 373 |
*/ |
| 374 |
public function get_search() { |
| 375 |
|
| 376 |
if ( ! isset( $_GET['s'] ) ) { |
| 377 |
return false; |
| 378 |
} |
| 379 |
|
| 380 |
$search = urldecode(trim($_GET['s'])); |
| 381 |
|
| 382 |
return ! empty($search) ? $search : false; |
| 383 |
} |
| 384 |
|
| 385 |
/** |
| 386 |
* Get the Bulk Actions. |
| 387 |
* |
| 388 |
* @access public |
| 389 |
* @since 1.8.16 |
| 390 |
* |
| 391 |
* @return array |
| 392 |
*/ |
| 393 |
public function get_bulk_actions() { |
| 394 |
$actions = [ |
| 395 |
'delete' => __( 'Delete', 'give' ), |
| 396 |
]; |
| 397 |
|
| 398 |
return $actions; |
| 399 |
} |
| 400 |
|
| 401 |
/** |
| 402 |
* Generate the table navigation above or below the table |
| 403 |
* |
| 404 |
* @param string $which Position to trigger i.e. Top/Bottom. |
| 405 |
* |
| 406 |
* @access protected |
| 407 |
* @since 1.8.16 |
| 408 |
*/ |
| 409 |
protected function display_tablenav( $which ) { |
| 410 |
if ( 'top' === $which ) { |
| 411 |
wp_nonce_field( 'bulk-donors', '_wpnonce', false ); |
| 412 |
} |
| 413 |
?> |
| 414 |
<div class="tablenav <?php echo esc_attr( $which ); ?>"> |
| 415 |
<?php if ( $this->has_items() ) : ?> |
| 416 |
<div class="alignleft actions bulkactions"> |
| 417 |
<?php $this->bulk_actions( $which ); ?> |
| 418 |
</div> |
| 419 |
<?php |
| 420 |
endif; |
| 421 |
$this->extra_tablenav( $which ); |
| 422 |
$this->pagination( $which ); |
| 423 |
?> |
| 424 |
<br class="clear"/> |
| 425 |
</div> |
| 426 |
<?php |
| 427 |
} |
| 428 |
|
| 429 |
/** |
| 430 |
* Retrieves the donor data from db. |
| 431 |
* |
| 432 |
* @since 2.21.2 Add second param to "give_donors_column_query_data" filter hook. |
| 433 |
* @since 1.0 |
| 434 |
* |
| 435 |
* @return array $data The Donor data. |
| 436 |
*/ |
| 437 |
public function donor_data() { |
| 438 |
|
| 439 |
$data = []; |
| 440 |
|
| 441 |
// Get donor query. |
| 442 |
$args = $this->get_donor_query(); |
| 443 |
$donors = Give()->donors->get_donors( $args ); |
| 444 |
|
| 445 |
if ( $donors ) { |
| 446 |
|
| 447 |
foreach ( $donors as $donor ) { |
| 448 |
|
| 449 |
$user_id = ! empty( $donor->user_id ) ? intval( $donor->user_id ) : 0; |
| 450 |
$title_prefix = Give()->donor_meta->get_meta( $donor->id, '_give_donor_title_prefix', true ); |
| 451 |
|
| 452 |
// If title prefix is set, then update the donor name. |
| 453 |
$donor->name = give_get_donor_name_with_title_prefixes( $title_prefix, $donor->name ); |
| 454 |
|
| 455 |
$data[] = [ |
| 456 |
'id' => $donor->id, |
| 457 |
'user_id' => $user_id, |
| 458 |
'name' => $donor->name, |
| 459 |
'email' => $donor->email, |
| 460 |
'num_donations' => $donor->purchase_count, |
| 461 |
'amount_spent' => $donor->purchase_value, |
| 462 |
'date_created' => $donor->date_created, |
| 463 |
]; |
| 464 |
} |
| 465 |
} |
| 466 |
|
| 467 |
return apply_filters( 'give_donors_column_query_data', $data, $donors ); |
| 468 |
} |
| 469 |
|
| 470 |
/** |
| 471 |
* Get donor count. |
| 472 |
* |
| 473 |
* @since 1.8.1 |
| 474 |
* @access private |
| 475 |
*/ |
| 476 |
private function get_donor_count() { |
| 477 |
// Get donor query. |
| 478 |
$_donor_query = $this->get_donor_query(); |
| 479 |
|
| 480 |
$_donor_query['number'] = - 1; |
| 481 |
$_donor_query['offset'] = 0; |
| 482 |
$_donor_query['count'] = true; |
| 483 |
|
| 484 |
return Give()->donors->get_donors( $_donor_query ); |
| 485 |
} |
| 486 |
|
| 487 |
/** |
| 488 |
* Get donor query. |
| 489 |
* |
| 490 |
* @since 3.5.0 Escape search query string. |
| 491 |
* @since 1.8.1 |
| 492 |
* @access public |
| 493 |
* |
| 494 |
* @return array |
| 495 |
*/ |
| 496 |
public function get_donor_query() { |
| 497 |
$per_page = $this->per_page; |
| 498 |
$paged = $this->get_paged(); |
| 499 |
$donor = isset( $_GET['donor'] ) ? absint( $_GET['donor'] ) : null; |
| 500 |
$start_date = ! empty( $_GET['start-date'] ) ? strtotime( give_clean( $_GET['start-date'] ) ) : false; |
| 501 |
$end_date = ! empty( $_GET['end-date'] ) ? strtotime( give_clean( $_GET['end-date'] ) ) : false; |
| 502 |
$form_id = ! empty( $_GET['form_id'] ) ? absint( $_GET['form_id'] ) : null; |
| 503 |
$offset = $this->per_page * ( $paged - 1 ); |
| 504 |
$search = $this->get_search(); |
| 505 |
$order = isset( $_GET['order'] ) ? sanitize_text_field( $_GET['order'] ) : 'DESC'; |
| 506 |
$orderby = isset( $_GET['orderby'] ) ? sanitize_text_field( $_GET['orderby'] ) : 'id'; |
| 507 |
|
| 508 |
$args = [ |
| 509 |
'output' => 'payments', |
| 510 |
'number' => $per_page, |
| 511 |
'offset' => $offset, |
| 512 |
'page' => isset( $_GET['paged'] ) ? $_GET['paged'] : null, |
| 513 |
'orderby' => $orderby, |
| 514 |
'order' => $order, |
| 515 |
'donor' => $donor, |
| 516 |
's' => esc_sql($search), |
| 517 |
'start_date' => $start_date, |
| 518 |
'end_date' => $end_date, |
| 519 |
'give_forms' => $form_id, |
| 520 |
]; |
| 521 |
|
| 522 |
/** |
| 523 |
* Filter to modify donor table argument. |
| 524 |
* |
| 525 |
* @since 2.4.0 |
| 526 |
*/ |
| 527 |
$args = (array) apply_filters( 'give_donor_table_query', $args ); |
| 528 |
|
| 529 |
return $args; |
| 530 |
} |
| 531 |
|
| 532 |
/** |
| 533 |
* Generates content for a single row of the table |
| 534 |
* |
| 535 |
* @param object $item The current item. |
| 536 |
* |
| 537 |
* @since 1.8.17 |
| 538 |
* @access public |
| 539 |
*/ |
| 540 |
public function single_row( $item ) { |
| 541 |
echo sprintf( '<tr id="donor-%1$d" data-id="%2$d" data-name="%3$s">', $item['id'], $item['id'], esc_attr( $item['name'] ) ); |
| 542 |
$this->single_row_columns( $item ); |
| 543 |
echo '</tr>'; |
| 544 |
} |
| 545 |
|
| 546 |
/** |
| 547 |
* Display the final donor table |
| 548 |
* |
| 549 |
* @since 1.8.17 |
| 550 |
* @access public |
| 551 |
*/ |
| 552 |
public function display() { |
| 553 |
$singular = $this->_args['singular']; |
| 554 |
|
| 555 |
$this->display_tablenav( 'top' ); |
| 556 |
|
| 557 |
$this->screen->render_screen_reader_content( 'heading_list' ); |
| 558 |
|
| 559 |
$get_data = give_clean( $_GET ); // WPCS: input var ok, sanitization ok, CSRF ok. |
| 560 |
|
| 561 |
$order = ! empty( $get_data['order'] ) ? $get_data['order'] : 'DESC'; |
| 562 |
$order_by = ! empty( $get_data['orderby'] ) ? $get_data['orderby'] : 'id'; |
| 563 |
?> |
| 564 |
<table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> |
| 565 |
<thead> |
| 566 |
<tr> |
| 567 |
<?php $this->print_column_headers(); ?> |
| 568 |
</tr> |
| 569 |
</thead> |
| 570 |
|
| 571 |
<tbody id="the-list" |
| 572 |
<?php |
| 573 |
if ( $singular ) { |
| 574 |
echo " data-wp-lists='list:$singular'"; |
| 575 |
} |
| 576 |
?> |
| 577 |
> |
| 578 |
<tr class="hidden"></tr> |
| 579 |
<tr id="give-bulk-delete" |
| 580 |
class="inline-edit-row inline-edit-row-page inline-edit-page bulk-edit-row bulk-edit-row-page bulk-edit-page inline-editor" |
| 581 |
style="display: none;"> |
| 582 |
<td colspan="6" class="colspanchange"> |
| 583 |
|
| 584 |
<fieldset class="inline-edit-col-left"> |
| 585 |
<legend class="inline-edit-legend"><?php esc_attr_e( 'BULK DELETE', 'give' ); ?></legend> |
| 586 |
<div class="inline-edit-col"> |
| 587 |
<div id="bulk-titles"> |
| 588 |
<div id="give-bulk-donors" class="give-bulk-donors"> |
| 589 |
|
| 590 |
</div> |
| 591 |
</div> |
| 592 |
</fieldset> |
| 593 |
|
| 594 |
<fieldset class="inline-edit-col-right"> |
| 595 |
<div class="inline-edit-col"> |
| 596 |
<label> |
| 597 |
<input class="give-donor-delete-confirm" type="checkbox" |
| 598 |
name="give-donor-delete-confirm"/> |
| 599 |
<?php esc_attr_e( 'Are you sure you want to delete the selected donor(s)?', 'give' ); ?> |
| 600 |
</label> |
| 601 |
<label> |
| 602 |
<input class="give-donor-delete-records" type="checkbox" |
| 603 |
name="give-donor-delete-records"/> |
| 604 |
<?php esc_attr_e( 'Delete all associated donations and records?', 'give' ); ?> |
| 605 |
</label> |
| 606 |
</div> |
| 607 |
</fieldset> |
| 608 |
|
| 609 |
<p class="submit inline-edit-save"> |
| 610 |
<input type="hidden" name="give_action" value="delete_bulk_donor"/> |
| 611 |
<input type="hidden" name="orderby" value="<?php echo esc_html( $order_by ); ?>"/> |
| 612 |
<input type="hidden" name="order" value="<?php echo esc_html( $order ); ?>"/> |
| 613 |
<button type="button" id="give-bulk-delete-cancel" |
| 614 |
class="button cancel alignleft"><?php esc_attr_e( 'Cancel', 'give' ); ?></button> |
| 615 |
<input type="submit" id="give-bulk-delete-button" disabled |
| 616 |
class="button button-primary alignright" |
| 617 |
value="<?php esc_attr_e( 'Delete', 'give' ); ?>"> |
| 618 |
<br class="clear"> |
| 619 |
</p> |
| 620 |
</td> |
| 621 |
</tr> |
| 622 |
<?php $this->display_rows_or_placeholder(); ?> |
| 623 |
</tbody> |
| 624 |
|
| 625 |
<tfoot> |
| 626 |
<tr> |
| 627 |
<?php $this->print_column_headers( false ); ?> |
| 628 |
</tr> |
| 629 |
</tfoot> |
| 630 |
|
| 631 |
</table> |
| 632 |
<?php |
| 633 |
$this->display_tablenav( 'bottom' ); |
| 634 |
} |
| 635 |
|
| 636 |
/** |
| 637 |
* Setup the final data for the table. |
| 638 |
* |
| 639 |
* @access public |
| 640 |
* @since 1.0 |
| 641 |
* |
| 642 |
* @return void |
| 643 |
*/ |
| 644 |
public function prepare_items() { |
| 645 |
|
| 646 |
$columns = $this->get_columns(); |
| 647 |
$hidden = []; // No hidden columns. |
| 648 |
$sortable = $this->get_sortable_columns(); |
| 649 |
|
| 650 |
$this->_column_headers = [ $columns, $hidden, $sortable ]; |
| 651 |
|
| 652 |
$this->items = $this->donor_data(); |
| 653 |
|
| 654 |
$this->total = $this->get_donor_count(); |
| 655 |
|
| 656 |
$this->set_pagination_args( |
| 657 |
[ |
| 658 |
'total_items' => $this->total, |
| 659 |
'per_page' => $this->per_page, |
| 660 |
'total_pages' => ceil( $this->total / $this->per_page ), |
| 661 |
] |
| 662 |
); |
| 663 |
} |
| 664 |
} |
| 665 |
|