actions.php
7 years ago
class-payments-table.php
7 years ago
payments-history.php
7 years ago
view-payment-details.php
7 years ago
view-payment-details.php
985 lines
| 1 | <?php |
| 2 | /** |
| 3 | * View Donation Details |
| 4 | * |
| 5 | * @package Give |
| 6 | * @subpackage Admin/Payments |
| 7 | * @copyright Copyright (c) 2016, GiveWP |
| 8 | * @license https://opensource.org/licenses/gpl-license GNU Public License |
| 9 | * @since 1.0 |
| 10 | */ |
| 11 | |
| 12 | // Exit if accessed directly. |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; |
| 15 | } |
| 16 | |
| 17 | if ( ! current_user_can( 'view_give_payments' ) ) { |
| 18 | wp_die( |
| 19 | __( 'Sorry, you are not allowed to access this page.', 'give' ), __( 'Error', 'give' ), array( |
| 20 | 'response' => 403, |
| 21 | ) |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * View donation details page |
| 27 | * |
| 28 | * @since 1.0 |
| 29 | * @return void |
| 30 | */ |
| 31 | if ( ! isset( $_GET['id'] ) || ! is_numeric( $_GET['id'] ) ) { |
| 32 | wp_die( __( 'Donation ID not supplied. Please try again.', 'give' ), __( 'Error', 'give' ), array( 'response' => 400 ) ); |
| 33 | } |
| 34 | |
| 35 | // Setup the variables |
| 36 | $payment_id = absint( $_GET['id'] ); |
| 37 | $payment = new Give_Payment( $payment_id ); |
| 38 | |
| 39 | // Sanity check... fail if donation ID is invalid |
| 40 | $payment_exists = $payment->ID; |
| 41 | if ( empty( $payment_exists ) ) { |
| 42 | wp_die( __( 'The specified ID does not belong to a donation. Please try again.', 'give' ), __( 'Error', 'give' ), array( 'response' => 400 ) ); |
| 43 | } |
| 44 | |
| 45 | $number = $payment->number; |
| 46 | $payment_meta = $payment->get_meta(); |
| 47 | |
| 48 | $company_name = ! empty( $payment_meta['_give_donation_company'] ) ? esc_attr( $payment_meta['_give_donation_company'] ) : ''; |
| 49 | $transaction_id = esc_attr( $payment->transaction_id ); |
| 50 | $user_id = $payment->user_id; |
| 51 | $donor_id = $payment->customer_id; |
| 52 | $payment_date = strtotime( $payment->date ); |
| 53 | $user_info = give_get_payment_meta_user_info( $payment_id ); |
| 54 | $address = $payment->address; |
| 55 | $currency_code = $payment->currency; |
| 56 | $gateway = $payment->gateway; |
| 57 | $currency_code = $payment->currency; |
| 58 | $payment_mode = $payment->mode; |
| 59 | $base_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); |
| 60 | |
| 61 | ?> |
| 62 | <div class="wrap give-wrap"> |
| 63 | |
| 64 | <h1 id="transaction-details-heading" class="wp-heading-inline"> |
| 65 | <?php |
| 66 | printf( |
| 67 | /* translators: %s: donation number */ |
| 68 | esc_html__( 'Donation %s', 'give' ), |
| 69 | $number |
| 70 | ); |
| 71 | if ( $payment_mode == 'test' ) { |
| 72 | echo Give()->tooltips->render_span(array( |
| 73 | 'label' => __( 'This donation was made in test mode.', 'give' ), |
| 74 | 'tag_content' => __( 'Test Donation', 'give' ), |
| 75 | 'position'=> 'right', |
| 76 | 'attributes' => array( |
| 77 | 'id' => 'test-payment-label', |
| 78 | 'class' => 'give-item-label give-item-label-orange' |
| 79 | ) |
| 80 | )); |
| 81 | } |
| 82 | ?> |
| 83 | </h1> |
| 84 | |
| 85 | <?php |
| 86 | /** |
| 87 | * Fires in donation details page, before the page content and after the H1 title output. |
| 88 | * |
| 89 | * @since 1.0 |
| 90 | * |
| 91 | * @param int $payment_id Payment id. |
| 92 | */ |
| 93 | do_action( 'give_view_donation_details_before', $payment_id ); |
| 94 | ?> |
| 95 | |
| 96 | <hr class="wp-header-end"> |
| 97 | |
| 98 | <form id="give-edit-order-form" method="post"> |
| 99 | <?php |
| 100 | /** |
| 101 | * Fires in donation details page, in the form before the order details. |
| 102 | * |
| 103 | * @since 1.0 |
| 104 | * |
| 105 | * @param int $payment_id Payment id. |
| 106 | */ |
| 107 | do_action( 'give_view_donation_details_form_top', $payment_id ); |
| 108 | ?> |
| 109 | <div id="poststuff"> |
| 110 | <div id="give-dashboard-widgets-wrap"> |
| 111 | <div id="post-body" class="metabox-holder columns-2"> |
| 112 | <div id="postbox-container-1" class="postbox-container"> |
| 113 | <div id="side-sortables" class="meta-box-sortables ui-sortable"> |
| 114 | |
| 115 | <?php |
| 116 | /** |
| 117 | * Fires in donation details page, before the sidebar. |
| 118 | * |
| 119 | * @since 1.0 |
| 120 | * |
| 121 | * @param int $payment_id Payment id. |
| 122 | */ |
| 123 | do_action( 'give_view_donation_details_sidebar_before', $payment_id ); |
| 124 | ?> |
| 125 | |
| 126 | <div id="give-order-update" class="postbox give-order-data"> |
| 127 | |
| 128 | <div class="give-order-top"> |
| 129 | <h3 class="hndle"><?php _e( 'Update Donation', 'give' ); ?></h3> |
| 130 | |
| 131 | <?php |
| 132 | if ( current_user_can( 'view_give_payments' ) ) { |
| 133 | echo sprintf( |
| 134 | '<span class="delete-donation" id="delete-donation-%d"><a class="delete-single-donation delete-donation-button dashicons dashicons-trash" href="%s" aria-label="%s"></a></span>', |
| 135 | $payment_id, |
| 136 | wp_nonce_url( |
| 137 | add_query_arg( |
| 138 | array( |
| 139 | 'give-action' => 'delete_payment', |
| 140 | 'purchase_id' => $payment_id, |
| 141 | ), $base_url |
| 142 | ), 'give_donation_nonce' |
| 143 | ), |
| 144 | sprintf( __( 'Delete Donation %s', 'give' ), $payment_id ) |
| 145 | ); |
| 146 | } |
| 147 | ?> |
| 148 | </div> |
| 149 | |
| 150 | <div class="inside"> |
| 151 | <div class="give-admin-box"> |
| 152 | |
| 153 | <?php |
| 154 | /** |
| 155 | * Fires in donation details page, before the sidebar update-payment metabox. |
| 156 | * |
| 157 | * @since 1.0 |
| 158 | * |
| 159 | * @param int $payment_id Payment id. |
| 160 | */ |
| 161 | do_action( 'give_view_donation_details_totals_before', $payment_id ); |
| 162 | ?> |
| 163 | |
| 164 | <div class="give-admin-box-inside"> |
| 165 | <p> |
| 166 | <label for="give-payment-status" class="strong"><?php _e( 'Status:', 'give' ); ?></label> |
| 167 | <select id="give-payment-status" name="give-payment-status" class="medium-text"> |
| 168 | <?php foreach ( give_get_payment_statuses() as $key => $status ) : ?> |
| 169 | <option value="<?php echo esc_attr( $key ); ?>"<?php selected( $payment->status, $key, true ); ?>><?php echo esc_html( $status ); ?></option> |
| 170 | <?php endforeach; ?> |
| 171 | </select> |
| 172 | <span class="give-donation-status status-<?php echo sanitize_title( $payment->status ); ?>"><span class="give-donation-status-icon"></span></span> |
| 173 | </p> |
| 174 | </div> |
| 175 | |
| 176 | <div class="give-admin-box-inside"> |
| 177 | <?php $date_format = give_date_format(); ?> |
| 178 | <p> |
| 179 | <label for="give-payment-date" class="strong"><?php _e( 'Date:', 'give' ); ?></label> |
| 180 | <input type="text" id="give-payment-date" name="give-payment-date" data-standard-date="<?php echo esc_attr( date( 'Y-m-d', $payment_date ) ); ?>" value="<?php echo esc_attr( date_i18n( $date_format, $payment_date ) ); ?>" autocomplete="off" class="medium-text give_datepicker" placeholder="<?php _e( 'Date', 'give' ); ?>"/> |
| 181 | </p> |
| 182 | </div> |
| 183 | |
| 184 | <div class="give-admin-box-inside"> |
| 185 | <p> |
| 186 | <label for="give-payment-time-hour" class="strong"><?php _e( 'Time:', 'give' ); ?></label> |
| 187 | <input type="number" step="1" max="24" id="give-payment-time-hour" name="give-payment-time-hour" value="<?php echo esc_attr( date_i18n( 'H', $payment_date ) ); ?>" class="small-text give-payment-time-hour"/> : |
| 188 | <input type="number" step="1" max="59" id="give-payment-time-min" name="give-payment-time-min" value="<?php echo esc_attr( date( 'i', $payment_date ) ); ?>" class="small-text give-payment-time-min"/> |
| 189 | </p> |
| 190 | </div> |
| 191 | |
| 192 | <?php |
| 193 | /** |
| 194 | * Fires in donation details page, in the sidebar update-payment metabox. |
| 195 | * |
| 196 | * Allows you to add new inner items. |
| 197 | * |
| 198 | * @since 1.0 |
| 199 | * |
| 200 | * @param int $payment_id Payment id. |
| 201 | */ |
| 202 | do_action( 'give_view_donation_details_update_inner', $payment_id ); |
| 203 | ?> |
| 204 | |
| 205 | <div class="give-order-payment give-admin-box-inside"> |
| 206 | <p> |
| 207 | <label for="give-payment-total" class="strong"><?php _e( 'Total Donation:', 'give' ); ?></label> |
| 208 | <?php echo give_currency_symbol( $payment->currency ); ?> |
| 209 | <input id="give-payment-total" name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr( give_format_decimal( array( 'donation_id' => $payment_id ) ) ); ?>"/> |
| 210 | </p> |
| 211 | </div> |
| 212 | |
| 213 | <?php |
| 214 | /** |
| 215 | * Fires in donation details page, after the sidebar update-donation metabox. |
| 216 | * |
| 217 | * @since 1.0 |
| 218 | * |
| 219 | * @param int $payment_id Payment id. |
| 220 | */ |
| 221 | do_action( 'give_view_donation_details_totals_after', $payment_id ); |
| 222 | ?> |
| 223 | |
| 224 | </div> |
| 225 | <!-- /.give-admin-box --> |
| 226 | |
| 227 | </div> |
| 228 | <!-- /.inside --> |
| 229 | |
| 230 | <div class="give-order-update-box give-admin-box"> |
| 231 | <?php |
| 232 | /** |
| 233 | * Fires in donation details page, before the sidebar update-payment metabox actions buttons. |
| 234 | * |
| 235 | * @since 1.0 |
| 236 | * |
| 237 | * @param int $payment_id Payment id. |
| 238 | */ |
| 239 | do_action( 'give_view_donation_details_update_before', $payment_id ); |
| 240 | ?> |
| 241 | |
| 242 | <div id="major-publishing-actions"> |
| 243 | <div id="publishing-action"> |
| 244 | <input type="submit" class="button button-primary right" value="<?php esc_attr_e( 'Save Donation', 'give' ); ?>"/> |
| 245 | <?php |
| 246 | if ( give_is_payment_complete( $payment_id ) ) { |
| 247 | $url = add_query_arg( |
| 248 | array( |
| 249 | 'give-action' => 'email_links', |
| 250 | 'purchase_id' => $payment_id, |
| 251 | ), |
| 252 | admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=' . $payment_id ) |
| 253 | ); |
| 254 | |
| 255 | echo sprintf( |
| 256 | '<a href="%1$s" id="give-resend-receipt" class="button-secondary right">%2$s</a>', |
| 257 | esc_url( $url ), |
| 258 | esc_html__( 'Resend Receipt', 'give' ) |
| 259 | ); |
| 260 | } |
| 261 | ?> |
| 262 | </div> |
| 263 | <div class="clear"></div> |
| 264 | </div> |
| 265 | <?php |
| 266 | /** |
| 267 | * Fires in donation details page, after the sidebar update-payment metabox actions buttons. |
| 268 | * |
| 269 | * @since 1.0 |
| 270 | * |
| 271 | * @param int $payment_id Payment id. |
| 272 | */ |
| 273 | do_action( 'give_view_donation_details_update_after', $payment_id ); |
| 274 | ?> |
| 275 | |
| 276 | </div> |
| 277 | <!-- /.give-order-update-box --> |
| 278 | |
| 279 | </div> |
| 280 | <!-- /#give-order-data --> |
| 281 | |
| 282 | <div id="give-order-details" class="postbox give-order-data"> |
| 283 | |
| 284 | <h3 class="hndle"><?php _e( 'Donation Meta', 'give' ); ?></h3> |
| 285 | |
| 286 | <div class="inside"> |
| 287 | <div class="give-admin-box"> |
| 288 | |
| 289 | <?php |
| 290 | /** |
| 291 | * Fires in donation details page, before the donation-meta metabox. |
| 292 | * |
| 293 | * @since 1.0 |
| 294 | * |
| 295 | * @param int $payment_id Payment id. |
| 296 | */ |
| 297 | do_action( 'give_view_donation_details_payment_meta_before', $payment_id ); |
| 298 | |
| 299 | $gateway = give_get_payment_gateway( $payment_id ); |
| 300 | if ( $gateway ) : |
| 301 | ?> |
| 302 | <div class="give-order-gateway give-admin-box-inside"> |
| 303 | <p> |
| 304 | <strong><?php _e( 'Gateway:', 'give' ); ?></strong> |
| 305 | <?php echo give_get_gateway_admin_label( $gateway ); ?> |
| 306 | </p> |
| 307 | </div> |
| 308 | <?php endif; ?> |
| 309 | |
| 310 | <div class="give-order-payment-key give-admin-box-inside"> |
| 311 | <p> |
| 312 | <strong><?php _e( 'Key:', 'give' ); ?></strong> |
| 313 | <?php echo give_get_payment_key( $payment_id ); ?> |
| 314 | </p> |
| 315 | </div> |
| 316 | |
| 317 | <div class="give-order-ip give-admin-box-inside"> |
| 318 | <p> |
| 319 | <strong><?php _e( 'IP:', 'give' ); ?></strong> |
| 320 | <?php echo esc_html( give_get_payment_user_ip( $payment_id ) ); ?> |
| 321 | </p> |
| 322 | </div> |
| 323 | |
| 324 | <?php |
| 325 | // Display the transaction ID present. |
| 326 | // The transaction ID is the charge ID from the gateway. |
| 327 | // For instance, stripe "ch_BzvwYCchqOy5Nt". |
| 328 | if ( $transaction_id != $payment_id ) : ?> |
| 329 | <div class="give-order-tx-id give-admin-box-inside"> |
| 330 | <p> |
| 331 | <strong><?php _e( 'Transaction ID:', 'give' ); ?> <span class="give-tooltip give-icon give-icon-question" data-tooltip="<?php echo sprintf( esc_attr__( 'The transaction ID within %s.', 'give' ), $gateway); ?>"></span></strong> |
| 332 | <?php echo apply_filters( "give_payment_details_transaction_id-{$gateway}", $transaction_id, $payment_id ); ?> |
| 333 | </p> |
| 334 | </div> |
| 335 | <?php endif; ?> |
| 336 | |
| 337 | <?php |
| 338 | /** |
| 339 | * Fires in donation details page, after the donation-meta metabox. |
| 340 | * |
| 341 | * @since 1.0 |
| 342 | * |
| 343 | * @param int $payment_id Payment id. |
| 344 | */ |
| 345 | do_action( 'give_view_donation_details_payment_meta_after', $payment_id ); |
| 346 | ?> |
| 347 | |
| 348 | <div class="give-admin-box-inside"> |
| 349 | <p><?php $purchase_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&donor=' . absint( give_get_payment_donor_id( $payment_id ) ) ); ?> |
| 350 | <a href="<?php echo $purchase_url; ?>"><?php _e( 'View all donations for this donor »', 'give' ); ?></a> |
| 351 | </p> |
| 352 | </div> |
| 353 | |
| 354 | </div> |
| 355 | <!-- /.column-container --> |
| 356 | |
| 357 | </div> |
| 358 | <!-- /.inside --> |
| 359 | |
| 360 | </div> |
| 361 | <!-- /#give-order-data --> |
| 362 | |
| 363 | <?php |
| 364 | /** |
| 365 | * Fires in donation details page, after the sidebar. |
| 366 | * |
| 367 | * @since 1.0 |
| 368 | * |
| 369 | * @param int $payment_id Payment id. |
| 370 | */ |
| 371 | do_action( 'give_view_donation_details_sidebar_after', $payment_id ); |
| 372 | ?> |
| 373 | |
| 374 | </div> |
| 375 | <!-- /#side-sortables --> |
| 376 | </div> |
| 377 | <!-- /#postbox-container-1 --> |
| 378 | |
| 379 | <div id="postbox-container-2" class="postbox-container"> |
| 380 | |
| 381 | <div id="normal-sortables" class="meta-box-sortables ui-sortable"> |
| 382 | |
| 383 | <?php |
| 384 | /** |
| 385 | * Fires in donation details page, before the main area. |
| 386 | * |
| 387 | * @since 1.0 |
| 388 | * |
| 389 | * @param int $payment_id Payment id. |
| 390 | */ |
| 391 | do_action( 'give_view_donation_details_main_before', $payment_id ); |
| 392 | ?> |
| 393 | |
| 394 | <?php $column_count = 'columns-3'; ?> |
| 395 | <div id="give-donation-overview" class="postbox <?php echo $column_count; ?>"> |
| 396 | <h3 class="hndle"><?php _e( 'Donation Information', 'give' ); ?></h3> |
| 397 | |
| 398 | <div class="inside"> |
| 399 | |
| 400 | <div class="column-container"> |
| 401 | <div class="column"> |
| 402 | <p> |
| 403 | <strong><?php _e( 'Donation Form ID:', 'give' ); ?></strong><br> |
| 404 | <?php |
| 405 | if ( $payment->form_id ) : |
| 406 | printf( |
| 407 | '<a href="%1$s">%2$s</a>', |
| 408 | admin_url( 'post.php?action=edit&post=' . $payment->form_id ), |
| 409 | $payment->form_id |
| 410 | ); |
| 411 | endif; |
| 412 | ?> |
| 413 | </p> |
| 414 | <p> |
| 415 | <strong><?php esc_html_e( 'Donation Form Title:', 'give' ); ?></strong><br> |
| 416 | <?php |
| 417 | echo Give()->html->forms_dropdown( |
| 418 | array( |
| 419 | 'selected' => $payment->form_id, |
| 420 | 'name' => 'give-payment-form-select', |
| 421 | 'id' => 'give-payment-form-select', |
| 422 | 'chosen' => true, |
| 423 | 'placeholder' => '', |
| 424 | ) |
| 425 | ); |
| 426 | ?> |
| 427 | </p> |
| 428 | </div> |
| 429 | <div class="column"> |
| 430 | <p> |
| 431 | <strong><?php _e( 'Donation Date:', 'give' ); ?></strong><br> |
| 432 | <?php echo date_i18n( give_date_format(), $payment_date ); ?> |
| 433 | </p> |
| 434 | <p> |
| 435 | <strong><?php _e( 'Donation Level:', 'give' ); ?></strong><br> |
| 436 | <span class="give-donation-level"> |
| 437 | <?php |
| 438 | $var_prices = give_has_variable_prices( $payment->form_id ); |
| 439 | if ( empty( $var_prices ) ) { |
| 440 | _e( 'n/a', 'give' ); |
| 441 | } else { |
| 442 | $prices_atts = array(); |
| 443 | if ( $variable_prices = give_get_variable_prices( $payment->form_id ) ) { |
| 444 | foreach ( $variable_prices as $variable_price ) { |
| 445 | $prices_atts[ $variable_price['_give_id']['level_id'] ] = give_format_amount( $variable_price['_give_amount'], array( 'sanitize' => false ) ); |
| 446 | } |
| 447 | } |
| 448 | // Variable price dropdown options. |
| 449 | $variable_price_dropdown_option = array( |
| 450 | 'id' => $payment->form_id, |
| 451 | 'name' => 'give-variable-price', |
| 452 | 'chosen' => true, |
| 453 | 'show_option_all' => '', |
| 454 | 'show_option_none' => ( '' === $payment->price_id ? __( 'None', 'give' ) : '' ), |
| 455 | 'select_atts' => 'data-prices=' . esc_attr( wp_json_encode( $prices_atts ) ), |
| 456 | 'selected' => $payment->price_id, |
| 457 | ); |
| 458 | // Render variable prices select tag html. |
| 459 | give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true ); |
| 460 | } |
| 461 | ?> |
| 462 | </span> |
| 463 | </p> |
| 464 | </div> |
| 465 | <div class="column"> |
| 466 | <p> |
| 467 | <strong><?php esc_html_e( 'Total Donation:', 'give' ); ?></strong><br> |
| 468 | <?php echo give_donation_amount( $payment, true ); ?> |
| 469 | </p> |
| 470 | |
| 471 | <?php if ( give_is_anonymous_donation_field_enabled( $payment->form_id ) ): ?> |
| 472 | <div> |
| 473 | <strong><?php esc_html_e( 'Anonymous Donation:', 'give' ); ?></strong> |
| 474 | <ul class="give-radio-inline"> |
| 475 | <li> |
| 476 | <label> |
| 477 | <input |
| 478 | name="give_anonymous_donation" |
| 479 | value="1" |
| 480 | type="radio" |
| 481 | <?php checked( 1, absint( give_get_meta( $payment_id, '_give_anonymous_donation', true ) ) ) ?> |
| 482 | ><?php _e( 'Yes', 'give' ); ?> |
| 483 | </label> |
| 484 | </li> |
| 485 | <li> |
| 486 | <label> |
| 487 | <input |
| 488 | name="give_anonymous_donation" |
| 489 | value="0" |
| 490 | type="radio" |
| 491 | <?php checked( 0, absint( give_get_meta( $payment_id, '_give_anonymous_donation', true ) ) ) ?> |
| 492 | ><?php _e( 'No', 'give' ); ?> |
| 493 | </label> |
| 494 | </li> |
| 495 | </ul> |
| 496 | </div> |
| 497 | <?php endif; ?> |
| 498 | <p> |
| 499 | <?php |
| 500 | /** |
| 501 | * Fires in donation details page, in the donation-information metabox, before the head elements. |
| 502 | * |
| 503 | * Allows you to add new TH elements at the beginning. |
| 504 | * |
| 505 | * @since 1.0 |
| 506 | * |
| 507 | * @param int $payment_id Payment id. |
| 508 | */ |
| 509 | do_action( 'give_donation_details_thead_before', $payment_id ); |
| 510 | |
| 511 | |
| 512 | /** |
| 513 | * Fires in donation details page, in the donation-information metabox, after the head elements. |
| 514 | * |
| 515 | * Allows you to add new TH elements at the end. |
| 516 | * |
| 517 | * @since 1.0 |
| 518 | * |
| 519 | * @param int $payment_id Payment id. |
| 520 | */ |
| 521 | do_action( 'give_donation_details_thead_after', $payment_id ); |
| 522 | |
| 523 | /** |
| 524 | * Fires in donation details page, in the donation-information metabox, before the body elements. |
| 525 | * |
| 526 | * Allows you to add new TD elements at the beginning. |
| 527 | * |
| 528 | * @since 1.0 |
| 529 | * |
| 530 | * @param int $payment_id Payment id. |
| 531 | */ |
| 532 | do_action( 'give_donation_details_tbody_before', $payment_id ); |
| 533 | |
| 534 | /** |
| 535 | * Fires in donation details page, in the donation-information metabox, after the body elements. |
| 536 | * |
| 537 | * Allows you to add new TD elements at the end. |
| 538 | * |
| 539 | * @since 1.0 |
| 540 | * |
| 541 | * @param int $payment_id Payment id. |
| 542 | */ |
| 543 | do_action( 'give_donation_details_tbody_after', $payment_id ); |
| 544 | ?> |
| 545 | </p> |
| 546 | </div> |
| 547 | </div> |
| 548 | |
| 549 | </div> |
| 550 | <!-- /.inside --> |
| 551 | |
| 552 | </div> |
| 553 | <!-- /#give-donation-overview --> |
| 554 | |
| 555 | <?php |
| 556 | /** |
| 557 | * Fires on the donation details page. |
| 558 | * |
| 559 | * @since 1.0 |
| 560 | * |
| 561 | * @param int $payment_id Payment id. |
| 562 | */ |
| 563 | do_action( 'give_view_donation_details_donor_detail_before', $payment_id ); |
| 564 | ?> |
| 565 | |
| 566 | <div id="give-donor-details" class="postbox"> |
| 567 | <h3 class="hndle"><?php _e( 'Donor Details', 'give' ); ?></h3> |
| 568 | |
| 569 | <div class="inside"> |
| 570 | |
| 571 | <?php $donor = new Give_Donor( $donor_id ); ?> |
| 572 | |
| 573 | <div class="column-container donor-info"> |
| 574 | <div class="column"> |
| 575 | <p> |
| 576 | <strong><?php esc_html_e( 'Donor ID:', 'give' ); ?></strong><br> |
| 577 | <?php |
| 578 | if ( ! empty( $donor->id ) ) { |
| 579 | printf( |
| 580 | '<a href="%1$s">%2$s</a>', |
| 581 | esc_url( admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=overview&id=' . $donor->id ) ), |
| 582 | intval( $donor->id ) |
| 583 | ); |
| 584 | } |
| 585 | ?> |
| 586 | <span>(<a href="#new" class="give-payment-new-donor"><?php esc_html_e( 'Create New Donor', 'give' ); ?></a>)</span> |
| 587 | </p> |
| 588 | <p> |
| 589 | <strong><?php esc_html_e( 'Donor Since:', 'give' ); ?></strong><br> |
| 590 | <?php echo date_i18n( give_date_format(), strtotime( $donor->date_created ) ) ?> |
| 591 | </p> |
| 592 | </div> |
| 593 | <div class="column"> |
| 594 | <p> |
| 595 | <strong><?php esc_html_e( 'Donor Name:', 'give' ); ?></strong><br> |
| 596 | <?php |
| 597 | $donor_billing_name = give_get_donor_name_by( $payment_id, 'donation' ); |
| 598 | $donor_name = give_get_donor_name_by( $donor_id, 'donor' ); |
| 599 | |
| 600 | // Check whether the donor name and WP_User name is same or not. |
| 601 | if ( $donor_billing_name !== $donor_name ) { |
| 602 | echo sprintf( |
| 603 | '%1$s (<a href="%2$s" target="_blank">%3$s</a>)', |
| 604 | esc_html( $donor_billing_name ), |
| 605 | esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id={$donor_id}" ) ), |
| 606 | esc_html( $donor_name ) |
| 607 | ); |
| 608 | } else { |
| 609 | echo esc_html( $donor_name ); |
| 610 | } |
| 611 | ?> |
| 612 | </p> |
| 613 | <p> |
| 614 | <strong><?php esc_html_e( 'Donor Email:', 'give' ); ?></strong><br> |
| 615 | <?php |
| 616 | // Show Donor donation email first and Primary email on parenthesis if not match both email. |
| 617 | echo hash_equals( $donor->email, $payment->email ) |
| 618 | ? $payment->email |
| 619 | : sprintf( |
| 620 | '%1$s (<a href="%2$s" target="_blank">%3$s</a>)', |
| 621 | $payment->email, |
| 622 | esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id={$donor_id}" ) ), |
| 623 | $donor->email |
| 624 | ); |
| 625 | ?> |
| 626 | </p> |
| 627 | </div> |
| 628 | <div class="column"> |
| 629 | <p> |
| 630 | <strong><?php esc_html_e( 'Change Donor:', 'give' ); ?></strong><br> |
| 631 | <?php |
| 632 | echo Give()->html->donor_dropdown( |
| 633 | array( |
| 634 | 'selected' => $donor->id, |
| 635 | 'name' => 'donor-id', |
| 636 | ) |
| 637 | ); |
| 638 | ?> |
| 639 | </p> |
| 640 | <p> |
| 641 | <?php if ( ! empty( $company_name ) ) { |
| 642 | ?> |
| 643 | <strong><?php esc_html_e( 'Company Name:', 'give' ); ?></strong><br> |
| 644 | <?php |
| 645 | echo $company_name; |
| 646 | } ?> |
| 647 | </p> |
| 648 | </div> |
| 649 | </div> |
| 650 | |
| 651 | <div class="column-container new-donor" style="display: none"> |
| 652 | <div class="column"> |
| 653 | <p> |
| 654 | <label for="give-new-donor-first-name"><?php _e( 'New Donor First Name:', 'give' ); ?></label> |
| 655 | <input id="give-new-donor-first-name" type="text" name="give-new-donor-first-name" value="" class="medium-text"/> |
| 656 | </p> |
| 657 | </div> |
| 658 | <div class="column"> |
| 659 | <p> |
| 660 | <label for="give-new-donor-last-name"><?php _e( 'New Donor Last Name:', 'give' ); ?></label> |
| 661 | <input id="give-new-donor-last-name" type="text" name="give-new-donor-last-name" value="" class="medium-text"/> |
| 662 | </p> |
| 663 | </div> |
| 664 | <div class="column"> |
| 665 | <p> |
| 666 | <label for="give-new-donor-email"><?php _e( 'New Donor Email:', 'give' ); ?></label> |
| 667 | <input id="give-new-donor-email" type="email" name="give-new-donor-email" value="" class="medium-text"/> |
| 668 | </p> |
| 669 | </div> |
| 670 | <div class="column"> |
| 671 | <p> |
| 672 | <input type="hidden" name="give-current-donor" value="<?php echo $donor->id; ?>"/> |
| 673 | <input type="hidden" id="give-new-donor" name="give-new-donor" value="0"/> |
| 674 | <a href="#cancel" class="give-payment-new-donor-cancel give-delete"><?php _e( 'Cancel', 'give' ); ?></a> |
| 675 | <br> |
| 676 | <em><?php _e( 'Click "Save Donation" to create new donor.', 'give' ); ?></em> |
| 677 | </p> |
| 678 | </div> |
| 679 | </div> |
| 680 | <?php |
| 681 | /** |
| 682 | * Fires on the donation details page, in the donor-details metabox. |
| 683 | * |
| 684 | * The hook is left here for backwards compatibility. |
| 685 | * |
| 686 | * @since 1.7 |
| 687 | * |
| 688 | * @param array $payment_meta Payment meta. |
| 689 | * @param array $user_info User information. |
| 690 | */ |
| 691 | do_action( 'give_payment_personal_details_list', $payment_meta, $user_info ); |
| 692 | |
| 693 | /** |
| 694 | * Fires on the donation details page, in the donor-details metabox. |
| 695 | * |
| 696 | * @since 1.7 |
| 697 | * |
| 698 | * @param int $payment_id Payment id. |
| 699 | */ |
| 700 | do_action( 'give_payment_view_details', $payment_id ); |
| 701 | ?> |
| 702 | |
| 703 | </div> |
| 704 | <!-- /.inside --> |
| 705 | </div> |
| 706 | <!-- /#give-donor-details --> |
| 707 | |
| 708 | <?php |
| 709 | /** |
| 710 | * Fires on the donation details page, before the billing metabox. |
| 711 | * |
| 712 | * @since 1.0 |
| 713 | * |
| 714 | * @param int $payment_id Payment id. |
| 715 | */ |
| 716 | do_action( 'give_view_donation_details_billing_before', $payment_id ); |
| 717 | ?> |
| 718 | |
| 719 | <div id="give-billing-details" class="postbox"> |
| 720 | <h3 class="hndle"><?php _e( 'Billing Address', 'give' ); ?></h3> |
| 721 | |
| 722 | <div class="inside"> |
| 723 | |
| 724 | <div id="give-order-address"> |
| 725 | |
| 726 | <div class="order-data-address"> |
| 727 | <div class="data column-container"> |
| 728 | |
| 729 | <?php |
| 730 | $address['country'] = ( ! empty( $address['country'] ) ? $address['country'] : give_get_country() ); |
| 731 | |
| 732 | $address['state'] = ( ! empty( $address['state'] ) ? $address['state'] : '' ); |
| 733 | |
| 734 | // Get the country list that does not have any states init. |
| 735 | $no_states_country = give_no_states_country_list(); |
| 736 | ?> |
| 737 | |
| 738 | <div class="row"> |
| 739 | <div id="give-order-address-country-wrap"> |
| 740 | <label class="order-data-address-line"><?php _e( 'Country:', 'give' ); ?></label> |
| 741 | <?php |
| 742 | echo Give()->html->select( |
| 743 | array( |
| 744 | 'options' => give_get_country_list(), |
| 745 | 'name' => 'give-payment-address[0][country]', |
| 746 | 'selected' => $address['country'], |
| 747 | 'show_option_all' => false, |
| 748 | 'show_option_none' => false, |
| 749 | 'chosen' => true, |
| 750 | 'placeholder' => esc_attr__( 'Select a country', 'give' ), |
| 751 | 'data' => array( 'search-type' => 'no_ajax' ), |
| 752 | 'autocomplete' => 'country', |
| 753 | ) |
| 754 | ); |
| 755 | ?> |
| 756 | </div> |
| 757 | </div> |
| 758 | |
| 759 | <div class="row"> |
| 760 | <div class="give-wrap-address-line1"> |
| 761 | <label for="give-payment-address-line1" class="order-data-address"><?php _e( 'Address 1:', 'give' ); ?></label> |
| 762 | <input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr( $address['line1'] ); ?>" class="medium-text"/> |
| 763 | </div> |
| 764 | </div> |
| 765 | |
| 766 | <div class="row"> |
| 767 | <div class="give-wrap-address-line2"> |
| 768 | <label for="give-payment-address-line2" class="order-data-address-line"><?php _e( 'Address 2:', 'give' ); ?></label> |
| 769 | <input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr( $address['line2'] ); ?>" class="medium-text"/> |
| 770 | </div> |
| 771 | </div> |
| 772 | |
| 773 | <div class="row"> |
| 774 | <div class="give-wrap-address-city"> |
| 775 | <label for="give-payment-address-city" class="order-data-address-line"><?php esc_html_e( 'City:', 'give' ); ?></label> |
| 776 | <input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr( $address['city'] ); ?>" class="medium-text"/> |
| 777 | </div> |
| 778 | </div> |
| 779 | |
| 780 | <?php |
| 781 | $state_exists = ( ! empty( $address['country'] ) && array_key_exists( $address['country'], $no_states_country ) ? true : false ); |
| 782 | ?> |
| 783 | <div class="row"> |
| 784 | <div class="<?php echo( ! empty( $state_exists ) ? 'column-full' : 'column' ); ?> give-column give-column-state"> |
| 785 | <div id="give-order-address-state-wrap" class="<?php echo( ! empty( $state_exists ) ? 'give-hidden' : '' ); ?>"> |
| 786 | <label for="give-payment-address-state" class="order-data-address-line"><?php esc_html_e( 'State / Province / County:', 'give' ); ?></label> |
| 787 | <?php |
| 788 | $states = give_get_states( $address['country'] ); |
| 789 | if ( ! empty( $states ) ) { |
| 790 | echo Give()->html->select( |
| 791 | array( |
| 792 | 'options' => $states, |
| 793 | 'name' => 'give-payment-address[0][state]', |
| 794 | 'selected' => $address['state'], |
| 795 | 'show_option_all' => false, |
| 796 | 'show_option_none' => false, |
| 797 | 'chosen' => true, |
| 798 | 'placeholder' => esc_attr__( 'Select a state', 'give' ), |
| 799 | 'data' => array( 'search-type' => 'no_ajax' ), |
| 800 | 'autocomplete' => 'address-level1', |
| 801 | ) |
| 802 | ); |
| 803 | } else { |
| 804 | ?> |
| 805 | <input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" autocomplete="address-line1" value="<?php echo esc_attr( $address['state'] ); ?>" class="medium-text"/> |
| 806 | <?php |
| 807 | } |
| 808 | ?> |
| 809 | </div> |
| 810 | </div> |
| 811 | |
| 812 | <div class="<?php echo( ! empty( $state_exists ) ? 'column-full' : 'column' ); ?> give-column give-column-zip"> |
| 813 | <div class="give-wrap-address-zip"> |
| 814 | <label for="give-payment-address-zip" class="order-data-address-line"><?php _e( 'Zip / Postal Code:', 'give' ); ?></label> |
| 815 | <input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr( $address['zip'] ); ?>" class="medium-text"/> |
| 816 | </div> |
| 817 | </div> |
| 818 | </div> |
| 819 | </div> |
| 820 | </div> |
| 821 | </div> |
| 822 | <!-- /#give-order-address --> |
| 823 | |
| 824 | <?php |
| 825 | /** |
| 826 | * Fires in donation details page, in the billing metabox, after all the fields. |
| 827 | * |
| 828 | * Allows you to insert new billing address fields. |
| 829 | * |
| 830 | * @since 1.7 |
| 831 | * |
| 832 | * @param int $payment_id Payment id. |
| 833 | */ |
| 834 | do_action( 'give_payment_billing_details', $payment_id ); |
| 835 | ?> |
| 836 | |
| 837 | </div> |
| 838 | <!-- /.inside --> |
| 839 | </div> |
| 840 | <!-- /#give-billing-details --> |
| 841 | |
| 842 | <?php |
| 843 | /** |
| 844 | * Fires on the donation details page, after the billing metabox. |
| 845 | * |
| 846 | * @since 1.0 |
| 847 | * |
| 848 | * @param int $payment_id Payment id. |
| 849 | */ |
| 850 | do_action( 'give_view_donation_details_billing_after', $payment_id ); |
| 851 | ?> |
| 852 | |
| 853 | <div id="give-payment-notes" class="postbox"> |
| 854 | <h3 class="hndle"><?php _e( 'Donation Notes', 'give' ); ?></h3> |
| 855 | |
| 856 | <div class="inside"> |
| 857 | <div id="give-payment-notes-inner"> |
| 858 | <?php |
| 859 | $notes = give_get_payment_notes( $payment_id ); |
| 860 | if ( ! empty( $notes ) ) { |
| 861 | $no_notes_display = ' style="display:none;"'; |
| 862 | foreach ( $notes as $note ) : |
| 863 | |
| 864 | echo give_get_payment_note_html( $note, $payment_id ); |
| 865 | |
| 866 | endforeach; |
| 867 | } else { |
| 868 | $no_notes_display = ''; |
| 869 | } |
| 870 | |
| 871 | echo '<p class="give-no-payment-notes"' . $no_notes_display . '>' . esc_html__( 'No donation notes.', 'give' ) . '</p>'; |
| 872 | ?> |
| 873 | </div> |
| 874 | <textarea name="give-payment-note" id="give-payment-note" class="large-text"></textarea> |
| 875 | |
| 876 | <div class="give-clearfix"> |
| 877 | <p> |
| 878 | <label for="donation_note_type" class="screen-reader-text"><?php _e( 'Note type', 'give' ); ?></label> |
| 879 | <select name="donation_note_type" id="donation_note_type"> |
| 880 | <option value=""><?php _e( 'Private note', 'give' ); ?></option> |
| 881 | <option value="donor"><?php _e( 'Note to donor', 'give' ); ?></option> |
| 882 | </select> |
| 883 | <button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint( $payment_id ); ?>"><?php _e( 'Add Note', 'give' ); ?></button> |
| 884 | </p> |
| 885 | </div> |
| 886 | |
| 887 | </div> |
| 888 | <!-- /.inside --> |
| 889 | </div> |
| 890 | <!-- /#give-payment-notes --> |
| 891 | |
| 892 | <?php |
| 893 | /** |
| 894 | * Fires on the donation details page, after the main area. |
| 895 | * |
| 896 | * @since 1.0 |
| 897 | * |
| 898 | * @param int $payment_id Payment id. |
| 899 | */ |
| 900 | do_action( 'give_view_donation_details_main_after', $payment_id ); |
| 901 | ?> |
| 902 | |
| 903 | <?php if ( give_is_donor_comment_field_enabled( $payment->form_id ) ) : ?> |
| 904 | <div id="give-payment-donor-comment" class="postbox"> |
| 905 | <h3 class="hndle"><?php _e( 'Donor Comment', 'give' ); ?></h3> |
| 906 | |
| 907 | <div class="inside"> |
| 908 | <div id="give-payment-donor-comment-inner"> |
| 909 | <p> |
| 910 | <?php |
| 911 | $donor_comment = give_get_donor_donation_comment( $payment_id, $payment->donor_id ); |
| 912 | |
| 913 | echo sprintf( |
| 914 | '<input type="hidden" name="give_comment_id" value="%s">', |
| 915 | $donor_comment instanceof WP_Comment // Backward compatibility. |
| 916 | || $donor_comment instanceof stdClass |
| 917 | ? $donor_comment->comment_ID : 0 |
| 918 | ); |
| 919 | |
| 920 | echo sprintf( |
| 921 | '<textarea name="give_comment" id="give_comment" placeholder="%s" class="large-text">%s</textarea>', |
| 922 | __( 'Add a comment', 'give' ), |
| 923 | $donor_comment instanceof WP_Comment // Backward compatibility. |
| 924 | || $donor_comment instanceof stdClass |
| 925 | ? $donor_comment->comment_content : '' |
| 926 | ); |
| 927 | ?> |
| 928 | </p> |
| 929 | </div> |
| 930 | |
| 931 | </div> |
| 932 | <!-- /.inside --> |
| 933 | </div> |
| 934 | <?php endif; ?> |
| 935 | <!-- /#give-payment-notes --> |
| 936 | |
| 937 | <?php |
| 938 | /** |
| 939 | * Fires on the donation details page, after the main area. |
| 940 | * |
| 941 | * @since 1.0 |
| 942 | * |
| 943 | * @param int $payment_id Payment id. |
| 944 | */ |
| 945 | do_action( 'give_view_donation_details_main_after', $payment_id ); |
| 946 | ?> |
| 947 | |
| 948 | </div> |
| 949 | <!-- /#normal-sortables --> |
| 950 | </div> |
| 951 | <!-- #postbox-container-2 --> |
| 952 | </div> |
| 953 | <!-- /#post-body --> |
| 954 | </div> |
| 955 | <!-- #give-dashboard-widgets-wrap --> |
| 956 | </div> |
| 957 | <!-- /#post-stuff --> |
| 958 | |
| 959 | <?php |
| 960 | /** |
| 961 | * Fires in donation details page, in the form after the order details. |
| 962 | * |
| 963 | * @since 1.0 |
| 964 | * |
| 965 | * @param int $payment_id Payment id. |
| 966 | */ |
| 967 | do_action( 'give_view_donation_details_form_bottom', $payment_id ); |
| 968 | |
| 969 | wp_nonce_field( 'give_update_payment_details_nonce' ); |
| 970 | ?> |
| 971 | <input type="hidden" name="give_payment_id" value="<?php echo esc_attr( $payment_id ); ?>"/> |
| 972 | <input type="hidden" name="give_action" value="update_payment_details"/> |
| 973 | </form> |
| 974 | <?php |
| 975 | /** |
| 976 | * Fires in donation details page, after the order form. |
| 977 | * |
| 978 | * @since 1.0 |
| 979 | * |
| 980 | * @param int $payment_id Payment id. |
| 981 | */ |
| 982 | do_action( 'give_view_donation_details_after', $payment_id ); |
| 983 | ?> |
| 984 | </div><!-- /.wrap --> |
| 985 |