Current File : /home/kelaby89/jrncommunityhousing.charity/wp-content/plugins/give/includes/admin/donors/donors.php |
<?php
/**
* Donors.
*
* @package Give
* @subpackage Admin/Donors
* @copyright Copyright (c) 2016, GiveWP
* @license https://opensource.org/licenses/gpl-license GNU Public License
* @since 1.0
*/
use Give\Donors\Models\Donor;
use Give\Helpers\IntlTelInput;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Get formatted address
*
* @since 2.0
*
* @param array $address
* @param array $address_args
*
* @return string
*/
function __give_get_format_address( $address, $address_args = array() ) {
$address_html = '';
$address_args = wp_parse_args(
$address_args,
array(
'type' => '',
'id' => null,
'index' => null,
'default_address' => false,
)
);
$address_id = $address_args['type'];
// Bailout.
if ( empty( $address ) || ! is_array( $address ) ) {
return $address_html;
}
// Address html.
$address_html = '';
$address_html .= sprintf(
'<span data-address-type="line1">%1$s</span>%2$s',
$address['line1'],
( ! empty( $address['line2'] ) ? '<br>' : '' )
);
$address_html .= sprintf(
'<span data-address-type="line2">%1$s</span>%2$s',
$address['line2'],
( ! empty( $address['city'] ) ? '<br>' : '' )
);
$address_html .= sprintf(
'<span data-address-type="city">%1$s</span><span data-address-type="state">%2$s</span><span data-address-type="zip">%3$s</span>%4$s',
$address['city'],
( ! empty( $address['state'] ) ? ", {$address['state']}" : '' ),
( ! empty( $address['zip'] ) ? " {$address['zip']}" : '' ),
( ! empty( $address['country'] ) ? '<br>' : '' )
);
$address_html .= sprintf(
'<span data-address-type="country">%s</span><br>',
$address['country']
);
// Address action.
$address_html .= sprintf(
'<br><a href="#" class="js-edit">%1$s</a> | <a href="#" class="js-remove">%2$s</a>',
__( 'Edit', 'give' ),
__( 'Remove', 'give' )
);
/**
* Filter the address label
*
* @since 2.0
*/
$address_label = apply_filters( "give_donor_{$address_args['type']}_address_label", ucfirst( $address_args['type'] ), $address_args );
// Set unique id and index for multi type address.
if ( isset( $address_args['index'] ) ) {
$address_label = "{$address_label} #{$address_args['index']}";
}
if ( isset( $address_args['id'] ) ) {
$address_id = "{$address_id}_{$address_args['id']}";
}
// Add address wrapper.
$address_html = sprintf(
'<div class="give-grid-col-4"><div data-address-id="%s" class="address"><span class="alignright address-number-label">%s</span>%s</div></div>',
$address_id,
$address_label,
$address_html
);
return $address_html;
}
/**
* Donors Page.
*
* Renders the donors page contents.
*
* @since 1.0
* @return void
*/
function give_donors_page() {
$default_views = give_donor_views();
$requested_view = isset( $_GET['view'] ) ? sanitize_text_field( $_GET['view'] ) : 'donors';
if ( array_key_exists( $requested_view, $default_views ) && function_exists( $default_views[ $requested_view ] ) ) {
give_render_donor_view( $requested_view, $default_views );
}
else {
$userId = get_current_user_id();
$showLegacy = get_user_meta($userId, '_give_donors_archive_show_legacy', true);
if ($showLegacy == 1)
{
give_donors_list();
}
}
}
/**
* Register the views for donor management.
*
* @since 1.0
* @return array Array of views and their callbacks.
*/
function give_donor_views() {
$views = array();
return apply_filters( 'give_donor_views', $views );
}
/**
* Register the tabs for donor management.
*
* @since 1.0
* @return array Array of tabs for the donor.
*/
function give_donor_tabs() {
$tabs = array();
return apply_filters( 'give_donor_tabs', $tabs );
}
/**
* List table of donors.
*
* @since 1.0
* @return void
*/
function give_donors_list() {
include GIVE_PLUGIN_DIR . 'includes/admin/donors/class-donor-table.php';
$donors_table = new Give_Donor_List_Table();
$donors_table->prepare_items();
?>
<div class="wrap">
<h1 class="wp-heading-inline"><?php echo get_admin_page_title(); ?></h1>
<?php
/**
* Fires in donors screen, above the table.
*
* @since 1.0
*/
do_action( 'give_donors_table_top' );
?>
<hr class="wp-header-end">
<form id="give-donors-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-donors' ); ?>">
<?php
$donors_table->advanced_filters();
$donors_table->display();
?>
<input type="hidden" name="post_type" value="give_forms"/>
<input type="hidden" name="page" value="give-donors"/>
<input type="hidden" name="view" value="donors"/>
</form>
<?php
/**
* Fires in donors screen, below the table.
*
* @since 1.0
*/
do_action( 'give_donors_table_bottom' );
?>
</div>
<?php
}
/**
* Renders the donor view wrapper.
*
* @since 1.0
*
* @param string $view The View being requested.
* @param array $callbacks The Registered views and their callback functions.
*
* @return void
*/
function give_render_donor_view( $view, $callbacks ) {
$render = true;
$donor_view_role = apply_filters( 'give_view_donors_role', 'view_give_reports' );
if ( ! current_user_can( $donor_view_role ) ) {
give_set_error( 'give-no-access', __( 'You are not permitted to view this data.', 'give' ) );
$render = false;
}
if ( ! isset( $_GET['id'] ) || ! is_numeric( $_GET['id'] ) ) {
give_set_error( 'give-invalid_donor', __( 'Invalid Donor ID.', 'give' ) );
$render = false;
}
$donor_id = (int) $_GET['id'];
$reconnect_user_id = ! empty( $_GET['user_id'] ) ? (int) $_GET['user_id'] : '';
$donor = new Give_Donor( $donor_id );
// Reconnect User with Donor profile.
if ( $reconnect_user_id ) {
give_connect_user_donor_profile( $donor, array( 'user_id' => $reconnect_user_id ), array() );
}
if ( empty( $donor->id ) ) {
give_set_error( 'give-invalid_donor', __( 'Invalid Donor ID.', 'give' ) );
$render = false;
}
?>
<div class='wrap'>
<h1 class="wp-heading-inline">
<?php
printf(
/* translators: %s: donor first name */
__( 'Edit Donor: %1$s %2$s', 'give' ),
$donor->get_first_name(),
$donor->get_last_name()
);
?>
</h1>
<hr class="wp-header-end">
<?php if ( give_get_errors() ) : ?>
<div class="error settings-error">
<?php Give()->notices->render_frontend_notices( 0 ); ?>
</div>
<?php endif; ?>
<?php if ( $donor && $render ) : ?>
<div class="nav-tab-wrapper give-nav-tab-wrapper">
<?php
$donor_tabs = give_donor_tabs();
foreach ( $donor_tabs as $key => $tab ) :
$active = $key === $view ? true : false;
$class = $active ? 'nav-tab nav-tab-active' : 'nav-tab';
printf(
'<a href="%1$s" class="%2$s">%3$s</a>' . "\n",
esc_url( admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=' . $key . '&id=' . $donor->id ) ),
esc_attr( $class ),
esc_html( $tab['title'] )
);
endforeach;
?>
</div>
<div id="give-donor-card-wrapper">
<?php $callbacks[ $view ]( $donor ); ?>
</div>
<?php endif; ?>
</div>
<?php
}
/**
* View a donor
*
* @since 3.7.0 Add "phone" field
* @since 1.0
*
* @param Give_Donor $donor The Donor object being displayed.
*
* @return void
*/
function give_donor_view( $donor ) {
$donor_edit_role = apply_filters( 'give_edit_donors_role', 'edit_give_payments' );
/**
* Fires in donor profile screen, above the donor card.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_card_top', $donor );
// Set Read only to the fields which needs to be locked.
$read_only = '';
if ( $donor->user_id ) {
$read_only = 'readonly="readonly"';
}
// List of title prefixes.
$title_prefixes = give_get_name_title_prefixes();
// Prepend title prefix to name if it is set.
$title_prefix = Give()->donor_meta->get_meta( $donor->id, '_give_donor_title_prefix', true );
$donor_name_without_prefix = $donor->name;
$donor->name = give_get_donor_name_with_title_prefixes( $title_prefix, $donor->name );
?>
<div id="donor-summary" class="info-wrapper donor-section postbox">
<form id="edit-donor-info" method="post"
action="<?php echo esc_url( admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=legacy-overview&id=' . $donor->id ) ); ?>">
<div class="donor-info">
<div class="donor-bio-header clearfix">
<div class="avatar-wrap left" id="donor-avatar">
<?php
// Check whether a Gravatar exists for a donor or not.
$validate_gravatar_image = give_validate_gravatar( $donor->email );
// Get donor's initials for non-gravatars
$donor_name_array = explode( ' ', $donor_name_without_prefix );
$donor_name_args['firstname'] = ! empty( $donor_name_array[0] ) ? $donor_name_array[0] : '';
$donor_name_args['lastname'] = ! empty( $donor_name_array[1] ) ? $donor_name_array[1] : '';
$donor_name_initial = give_get_name_initial( $donor_name_args );
// Gravatars image for donor
if ( $validate_gravatar_image ) {
$donor_gravatar_image = get_avatar( $donor->email );
} else {
$donor_gravatar_image = '<div class="give-donor-admin-avatar">' . $donor_name_initial . '</div>';
}
echo $donor_gravatar_image;
?>
</div>
<div id="donor-name-wrap" class="left">
<span class="donor-name info-item edit-item">
<select name="donor_info[title]">
<option disabled value="0"><?php esc_html_e( 'Title', 'give' ); ?></option>
<option value=""> </option>
<?php
if ( is_array( $title_prefixes ) && count( $title_prefixes ) > 0 ) {
foreach ( $title_prefixes as $title ) {
echo sprintf(
'<option %1$s value="%2$s">%2$s</option>',
selected( $title_prefix, $title, false ),
esc_html( $title )
);
}
}
?>
</select>
<input <?php echo $read_only; ?> size="15" data-key="first_name"
name="donor_info[first_name]" type="text"
value="<?php echo esc_html( $donor->get_first_name() ); ?>"
placeholder="<?php esc_html_e( 'First Name', 'give' ); ?>"/>
<?php if ( $donor->user_id ) : ?>
<a href="#" class="give-lock-block">
<i class="give-icon give-icon-locked"></i>
</a>
<?php endif; ?>
<input <?php echo $read_only; ?> size="15" data-key="last_name"
name="donor_info[last_name]" type="text"
value="<?php echo esc_html( $donor->get_last_name() ); ?>"
placeholder="<?php esc_html_e( 'Last Name', 'give' ); ?>"/>
<?php if ( $donor->user_id ) : ?>
<a href="#" class="give-lock-block">
<i class="give-icon give-icon-locked"></i>
</a>
<?php endif; ?>
</span>
<span class="donor-name info-item editable">
<span data-key="name"><?php echo esc_html( $donor->name ); ?></span>
</span>
</div>
<p class="donor-since info-item">
<?php esc_html_e( 'Donor since', 'give' ); ?>
<?php echo date_i18n( give_date_format(), strtotime( $donor->date_created ) ); ?>
</p>
<?php if ( current_user_can( $donor_edit_role ) ) : ?>
<a href="#" id="edit-donor" class="button info-item editable donor-edit-link">
<?php esc_html_e( 'Edit Donor', 'give' ); ?>
</a>
<?php endif; ?>
</div>
<!-- /donor-bio-header -->
<div class="donor-main-wrapper">
<table class="widefat striped">
<tbody>
<tr>
<th scope="col"><label for="tablecell"><?php esc_html_e( 'Donor ID:', 'give' ); ?></label>
</th>
<td><?php echo intval( $donor->id ); ?></td>
</tr>
<tr>
<th scope="col"><label for="tablecell"><?php esc_html_e( 'User ID:', 'give' ); ?></label>
</th>
<td>
<span class="donor-user-id info-item edit-item">
<?php
$user_id = $donor->user_id > 0 ? $donor->user_id : '';
$data_atts = array(
'key' => 'user_login',
'search-type' => 'user',
);
$user_args = array(
'name' => 'donor_info[user_id]',
'class' => 'give-user-dropdown',
'data' => $data_atts,
);
if ( ! empty( $user_id ) ) {
$userdata = get_userdata( $user_id );
$user_args['selected'] = $user_id;
}
echo Give()->html->ajax_user_search( $user_args );
?>
</span>
<span class="donor-user-id info-item editable">
<?php if ( ! empty( $userdata ) ) : ?>
<span
data-key="user_id">#<?php echo $donor->user_id . ' - ' . $userdata->display_name; ?></span>
<?php else : ?>
<span
data-key="user_id"><?php esc_html_e( 'Unregistered', 'give' ); ?></span>
<?php endif; ?>
<?php
if ( current_user_can( $donor_edit_role ) && intval( $donor->user_id ) > 0 ) :
echo sprintf(
'- <span class="disconnect-user">
<a id="disconnect-donor" href="#disconnect" aria-label="%1$s">%2$s</a>
</span> |
<span class="view-user-profile">
<a id="view-user-profile" href="%3$s" aria-label="%4$s">%5$s</a>
</span>',
esc_html__( 'Disconnects the current user ID from this donor record.', 'give' ),
esc_html__( 'Disconnect User', 'give' ),
esc_url( 'user-edit.php?user_id=' . $donor->user_id ),
esc_html__( 'View User Profile of current user ID.', 'give' ),
esc_html__( 'View User Profile', 'give' )
);
endif;
?>
</span>
</td>
</tr>
<?php
$donor_phone_number = Donor::find($donor->id)->phone;
?>
<tr class="alternate">
<th scope="col">
<label for="tablecell"><?php
esc_html_e('Phone:', 'give'); ?></label>
</th>
<td>
<span class="donor-user-id info-item edit-item">
<?php
echo IntlTelInput::getHtmlInput($donor_phone_number, "give_donor_phone_number"); ?>
</span>
<span class="donor-user-id info-item editable">
<?php
echo $donor_phone_number; ?>
</span>
</td>
</tr>
<?php
$donor_company = $donor->get_meta( '_give_donor_company', true );
?>
<tr class="">
<th scope="col">
<label for="tablecell"><?php esc_html_e( 'Company Name:', 'give' ); ?></label>
</th>
<td>
<span class="donor-user-id info-item edit-item">
<input name="give_donor_company" value="<?php echo $donor_company; ?>" type="text">
</span>
<span class="donor-user-id info-item editable">
<?php echo $donor_company; ?>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<span id="donor-edit-actions" class="edit-item">
<input type="hidden" data-key="id" name="donor_info[id]" value="<?php echo intval( $donor->id ); ?>"/>
<?php wp_nonce_field( 'edit-donor', '_wpnonce', false, true ); ?>
<input type="hidden" name="give_action" value="edit-donor"/>
<input type="submit" id="give-edit-donor-save" class="button-secondary"
value="<?php esc_html_e( 'Update Donor', 'give' ); ?>"/>
<a id="give-edit-donor-cancel" href="" class="delete"><?php esc_html_e( 'Cancel', 'give' ); ?></a>
</span>
</form>
</div>
<?php
/**
* Fires in donor profile screen, above the stats list.
*
* @since 1.0
*
* @param Give_Donor $donor The donor object being displayed.
*/
do_action( 'give_donor_before_stats', $donor );
?>
<div id="donor-stats-wrapper" class="donor-section postbox clear">
<ul>
<li>
<a href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&donor=' . absint( $donor->id ) ); ?>">
<span class="dashicons dashicons-heart"></span>
<?php
// Completed Donations.
$completed_donations_text = sprintf( _n( '%d Completed Donation', '%d Completed Donations', $donor->purchase_count, 'give' ), $donor->purchase_count );
echo apply_filters( 'give_donor_completed_donations', $completed_donations_text, $donor );
?>
</a>
</li>
<li>
<span class="dashicons dashicons-chart-area"></span>
<?php echo give_currency_filter( give_format_amount( $donor->get_total_donation_amount(), array( 'sanitize' => false ) ) ); ?> <?php _e( 'Lifetime Donations', 'give' ); ?>
</li>
<?php
/**
* Fires in donor profile screen, in the stats list.
*
* Allows you to add more list items to the stats list.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_stats_list', $donor );
?>
</ul>
</div>
<?php
/**
* Fires in donor profile screen, above the address list.
*
* @since 1.8.14
*
* @param Give_Donor $donor The donor object being displayed.
*/
do_action( 'give_donor_before_address', $donor );
?>
<div id="donor-address-wrapper" class="donor-section clear">
<h3><?php _e( 'Addresses', 'give' ); ?></h3>
<div class="postbox give-donor-addresses">
<div class="give-spinner-wrapper">
<span class="give-spinner spinner aligncenter"></span>
</div>
<div class="inside">
<div class="all-address">
<div class="give-grid-row">
<?php
if ( ! empty( $donor->address ) ) :
// Default address always will be at zero array index.
$is_set_as_default = null;
foreach ( $donor->address as $address_type => $addresses ) {
switch ( true ) {
case is_array( end( $addresses ) ):
$index = 1;
foreach ( $addresses as $id => $address ) {
echo __give_get_format_address(
$address,
array(
'type' => $address_type,
'id' => $id,
'index' => $index,
)
);
$index ++;
}
break;
case is_string( end( $addresses ) ):
echo __give_get_format_address(
$addresses,
array(
'type' => $address_type,
)
);
break;
}
}
endif;
?>
</div>
<span class="give-no-address-message
<?php
if ( ! empty( $donor->address ) ) {
echo ' give-hidden';
}
?>
">
<?php _e( 'This donor does not have any addresses saved.', 'give' ); ?>
</span>
<button class="button add-new-address">
<?php _e( 'Add Address', 'give' ); ?>
</button>
</div>
<div class="address-form add-new-address-form-hidden">
<form action="" method="post">
<table class="widefat striped">
<tbody>
<tr>
<th class="col">
<label class="country"><?php esc_html_e( 'Country:', 'give' ); ?></label>
</th>
<td>
<?php
echo Give()->html->select(
array(
'options' => give_get_country_list(),
'name' => 'country',
'selected' => give_get_option( 'base_country' ),
'show_option_all' => false,
'show_option_none' => false,
'chosen' => true,
'placeholder' => esc_attr__( 'Select a country', 'give' ),
'data' => array( 'search-type' => 'no_ajax' ),
'autocomplete' => 'country',
)
);
?>
</td>
</tr>
<tr>
<th class="col">
<label for="line1"><?php esc_html_e( 'Address 1:', 'give' ); ?></label>
</th>
<td>
<input id="line1" name="line1" type="text" class="medium-text"/>
</td>
</tr>
<tr>
<th class="col">
<label for="line2"><?php esc_html_e( 'Address 2:', 'give' ); ?></label>
</th>
<td>
<input id="line2" type="text" name="line2" value="" class="medium-text"/>
</td>
</tr>
<tr>
<th class="col">
<label for="city"><?php esc_html_e( 'City:', 'give' ); ?></label>
</th>
<td>
<input id="city" type="text" name="city" value="" class="medium-text"/>
</td>
</tr>
<?php
$no_states_country = give_no_states_country_list();
$base_country = give_get_option( 'base_country' );
if ( ! array_key_exists( $base_country, $no_states_country ) ) {
?>
<tr class="give-field-wrap">
<th class="col">
<label
for="state"><?php esc_html_e( 'State / Province / County:', 'give' ); ?></label>
</th>
<td>
<?php
$states = give_get_states( $base_country );
$state_args = array(
'name' => 'state',
'class' => 'regular-text',
'autocomplete' => 'address-level1',
);
if ( empty( $states ) ) {
// Show Text field, if empty states.
$state_args = wp_parse_args(
$state_args,
array(
'value' => give_get_option( 'base_state' ),
)
);
echo Give()->html->text( $state_args );
} else {
// Show Chosen DropDown, if states are not empty.
$state_args = wp_parse_args(
$state_args,
array(
'options' => $states,
'selected' => give_get_option( 'base_state' ),
'show_option_all' => false,
'show_option_none' => false,
'chosen' => true,
'placeholder' => __( 'Select a state', 'give' ),
'data' => array( 'search-type' => 'no_ajax' ),
)
);
echo Give()->html->select( $state_args );
}
?>
</td>
</tr>
<?php
}
?>
<tr>
<th class="col">
<label for="zip"><?php esc_html_e( 'Zip / Postal Code:', 'give' ); ?></label>
</th>
<td>
<input id="zip" type="text" name="zip" value="" class="medium-text"/>
</td>
</tr>
<tr>
<td colspan="2">
<?php wp_nonce_field( 'give-manage-donor-addresses', '_wpnonce', false ); ?>
<input type="hidden" name="address-action" value="add">
<input type="hidden" name="address-id" value="">
<input type="submit" class="button button-primary js-save"
value="<?php _e( 'Save', 'give' ); ?>"> <button
class="button js-cancel"><?php _e( 'Cancel', 'give' ); ?></button>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</div>
</div>
<?php
/**
* Fires in donor profile screen, above the tables wrapper.
*
* @since 1.0
*
* @param Give_Donor $donor The donor object being displayed.
*/
do_action( 'give_donor_before_tables_wrapper', $donor );
?>
<div id="donor-tables-wrapper" class="donor-section">
<?php
/**
* Fires in donor profile screen, above the tables.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_before_tables', $donor );
?>
<h3><?php _e( 'Donor Emails', 'give' ); ?></h3>
<table class="wp-list-table widefat striped emails">
<thead>
<tr>
<th><?php _e( 'Email', 'give' ); ?></th>
<th><?php _e( 'Actions', 'give' ); ?></th>
</tr>
</thead>
<tbody>
<?php if ( ! empty( $donor->emails ) ) { ?>
<?php foreach ( $donor->emails as $key => $email ) : ?>
<tr data-key="<?php echo $key; ?>">
<td>
<?php echo $email; ?>
<?php if ( 'primary' === $key ) : ?>
<span class="dashicons dashicons-star-filled primary-email-icon"></span>
<?php endif; ?>
</td>
<td>
<?php if ( 'primary' !== $key ) : ?>
<?php
$base_url = admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=legacy-overview&id=' . $donor->id );
$promote_url = wp_nonce_url(
add_query_arg(
array(
'email' => rawurlencode( $email ),
'give_action' => 'set_donor_primary_email',
),
$base_url
),
'give-set-donor-primary-email'
);
$remove_url = wp_nonce_url(
add_query_arg(
array(
'email' => rawurlencode( $email ),
'give_action' => 'remove_donor_email',
),
$base_url
),
'give-remove-donor-email'
);
?>
<a href="<?php echo esc_url( $promote_url ); ?>"><?php _e( 'Make Primary', 'give' ); ?></a>
|
<a href="<?php echo esc_url( $remove_url ); ?>" class="delete"><?php _e( 'Remove', 'give' ); ?></a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
<tr class="add-donor-email-row">
<td colspan="2" class="add-donor-email-td">
<div class="add-donor-email-wrapper">
<input type="hidden" name="donor-id" value="<?php echo $donor->id; ?>"/>
<?php wp_nonce_field( 'give_add_donor_email', 'add_email_nonce', false, true ); ?>
<input type="email" name="additional-email" value=""
placeholder="<?php _e( 'Email Address', 'give' ); ?>"/>
<input type="checkbox" name="make-additional-primary" value="1"
id="make-additional-primary"/> <label
for="make-additional-primary"><?php _e( 'Make Primary', 'give' ); ?></label>
<button class="button-secondary give-add-donor-email"
id="add-donor-email"><?php _e( 'Add Email', 'give' ); ?></button>
<span class="spinner"></span>
</div>
<div class="notice-wrap"></div>
</td>
</tr>
<?php } else { ?>
<tr>
<td colspan="2"><?php _e( 'No Emails Found', 'give' ); ?></td>
</tr>
<?php
}// End if().
?>
</tbody>
</table>
<h3><?php _e( 'Recent Donations', 'give' ); ?></h3>
<?php
$payment_ids = explode( ',', $donor->payment_ids );
$payments = give_get_payments(
array(
'post__in' => $payment_ids,
)
);
$payments = array_slice( $payments, 0, 10 );
?>
<table class="wp-list-table widefat striped payments">
<thead>
<tr>
<th scope="col"><?php _e( 'ID', 'give' ); ?></th>
<th scope="col"><?php _e( 'Amount', 'give' ); ?></th>
<th scope="col"><?php _e( 'Date', 'give' ); ?></th>
<th scope="col"><?php _e( 'Status', 'give' ); ?></th>
<th scope="col"><?php _e( 'Actions', 'give' ); ?></th>
</tr>
</thead>
<tbody>
<?php if ( ! empty( $payments ) ) { ?>
<?php foreach ( $payments as $payment ) : ?>
<tr>
<td><?php echo Give()->seq_donation_number->get_serial_code( $payment->ID ); ?></td>
<td>
<?php
echo give_donation_amount(
$payment->ID,
array(
'currency' => true,
'amount' => true,
'type' => 'donor',
)
);
?>
</td>
<td><?php echo date_i18n( give_date_format(), strtotime( $payment->post_date ) ); ?></td>
<td><?php echo give_get_payment_status( $payment, true ); ?></td>
<td>
<?php
printf(
'<a href="%1$s" aria-label="%2$s">%3$s</a>',
admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=' . $payment->ID ),
sprintf(
/* translators: %s: Donation ID */
esc_attr__( 'View Donation %s.', 'give' ),
$payment->ID
),
__( 'View Donation', 'give' )
);
?>
<?php
/**
* Fires in donor profile screen, in the recent donations tables action links.
*
* Allows you to add more action links for each donation, after the 'View Donation' action link.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
* @param object $payment The payment object being displayed.
*/
do_action( 'give_donor_recent_purchases_actions', $donor, $payment );
?>
</td>
</tr>
<?php endforeach; ?>
<?php } else { ?>
<tr>
<td colspan="5"><?php _e( 'No donations found.', 'give' ); ?></td>
</tr>
<?php
}// End if().
?>
</tbody>
</table>
<h3><?php _e( 'Completed Forms', 'give' ); ?></h3>
<?php
$donations = give_get_users_completed_donations( $donor->email );
?>
<table class="wp-list-table widefat striped donations">
<thead>
<tr>
<th scope="col"><?php _e( 'Form', 'give' ); ?></th>
<th scope="col" width="120px"><?php _e( 'Actions', 'give' ); ?></th>
</tr>
</thead>
<tbody>
<?php if ( ! empty( $donations ) ) { ?>
<?php foreach ( $donations as $donation ) : ?>
<tr>
<td><?php echo $donation->post_title; ?></td>
<td>
<?php
printf(
'<a href="%1$s" aria-label="%2$s">%3$s</a>',
esc_url( admin_url( 'post.php?action=edit&post=' . $donation->ID ) ),
sprintf(
/* translators: %s: form name */
esc_attr__( 'View Form %s.', 'give' ),
$donation->post_title
),
__( 'View Form', 'give' )
);
?>
</td>
</tr>
<?php endforeach; ?>
<?php } else { ?>
<tr>
<td colspan="2"><?php _e( 'No completed donations found.', 'give' ); ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php
/**
* Fires in donor profile screen, below the tables.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_after_tables', $donor );
?>
</div>
<?php
/**
* Fires in donor profile screen, below the donor card.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_card_bottom', $donor );
}
/**
* View the notes of a donor.
*
* @since 1.0
*
* @param Give_Donor $donor The donor object being displayed.
*
* @return void
*/
function give_donor_notes_view( $donor ) {
$paged = isset( $_GET['paged'] ) && is_numeric( $_GET['paged'] ) ? $_GET['paged'] : 1;
$paged = absint( $paged );
$note_count = $donor->get_notes_count();
$per_page = apply_filters( 'give_donor_notes_per_page', 20 );
$total_pages = ceil( $note_count / $per_page );
$donor_notes = $donor->get_notes( $per_page, $paged );
?>
<div id="donor-notes-wrapper">
<div class="donor-notes-header">
<?php echo get_avatar( $donor->email, 30 ); ?> <span><?php echo $donor->name; ?></span>
</div>
<h3><?php _e( 'Notes', 'give' ); ?></h3>
<?php if ( 1 == $paged ) : ?>
<div style="display: block; margin-bottom: 55px;">
<form id="give-add-donor-note" method="post"
action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=notes&id=' . $donor->id ); ?>">
<textarea id="donor-note" name="donor_note" class="donor-note-input" rows="10"></textarea>
<br/>
<input type="hidden" id="donor-id" name="customer_id" value="<?php echo $donor->id; ?>"/>
<input type="hidden" name="give_action" value="add-donor-note"/>
<?php wp_nonce_field( 'add-donor-note', 'add_donor_note_nonce', true, true ); ?>
<input id="add-donor-note" class="right button-primary" type="submit" value="Add Note"/>
</form>
</div>
<?php endif; ?>
<?php
$pagination_args = array(
'base' => '%_%',
'format' => '?paged=%#%',
'total' => $total_pages,
'current' => $paged,
'show_all' => true,
);
echo paginate_links( $pagination_args );
?>
<div id="give-donor-notes" class="postbox">
<?php if ( count( $donor_notes ) > 0 ) { ?>
<?php foreach ( $donor_notes as $key => $note ) : ?>
<div class="donor-note-wrapper dashboard-comment-wrap comment-item">
<span class="note-content-wrap">
<?php echo stripslashes( $note ); ?>
</span>
</div>
<?php endforeach; ?>
<?php } else { ?>
<div class="give-no-donor-notes">
<?php _e( 'No donor notes found.', 'give' ); ?>
</div>
<?php } ?>
</div>
<?php echo paginate_links( $pagination_args ); ?>
</div>
<?php
}
/**
* The donor delete view.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*
* @return void
*/
function give_donor_delete_view( $donor ) {
$donor_edit_role = apply_filters( 'give_edit_donors_role', 'edit_give_payments' );
/**
* Fires in donor delete screen, above the content.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_delete_top', $donor );
?>
<div class="info-wrapper donor-section">
<form id="delete-donor" method="post"
action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=delete&id=' . $donor->id ); ?>">
<div class="donor-notes-header">
<?php echo get_avatar( $donor->email, 30 ); ?> <span><?php echo $donor->name; ?></span>
</div>
<div class="donor-info delete-donor">
<span class="delete-donor-options">
<p>
<?php
echo Give()->html->checkbox(
array(
'name' => 'give-donor-delete-confirm',
)
);
?>
<label
for="give-donor-delete-confirm"><?php _e( 'Are you sure you want to delete this donor?', 'give' ); ?></label>
</p>
<p>
<?php
echo Give()->html->checkbox(
array(
'name' => 'give-donor-delete-records',
'options' => array(
'disabled' => true,
),
)
);
?>
<label
for="give-donor-delete-records"><?php _e( 'Delete all associated donations and records?', 'give' ); ?></label>
</p>
<?php
/**
* Fires in donor delete screen, bellow the delete inputs.
*
* Allows you to add custom delete inputs.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_delete_inputs', $donor );
?>
</span>
<span id="donor-edit-actions">
<input type="hidden" name="donor_id" value="<?php echo $donor->id; ?>"/>
<?php wp_nonce_field( 'give-delete-donor', '_wpnonce', false, true ); ?>
<input type="hidden" name="give_action" value="delete_donor"/>
<input type="submit" disabled="disabled" id="give-delete-donor" class="button-primary"
value="<?php _e( 'Delete Donor', 'give' ); ?>"/>
<a id="give-delete-donor-cancel"
href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=legacy-overview&id=' . $donor->id ); ?>"
class="delete"><?php _e( 'Cancel', 'give' ); ?></a>
</span>
</div>
</form>
</div>
<?php
/**
* Fires in donor delete screen, bellow the content.
*
* @since 1.0
*
* @param object $donor The donor object being displayed.
*/
do_action( 'give_donor_delete_bottom', $donor );
}