File: /home/globfdxw/www/wp-content/plugins/give/includes/admin/tools/views/html-admin-page-data.php
<?php
/**
* Admin View: Exports
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! current_user_can( 'manage_give_settings' ) ) {
return;
}
/**
* Fires before displaying the recount stats tools.
*
* @since 1.5
*/
do_action( 'give_tools_recount_stats_before' );
?>
<div id="poststuff" class="give-clearfix">
<div class="postbox">
<h2 class="hndle ui-sortable-handle"><span><?php esc_html_e( 'Recount Stats', 'give' ); ?></span></h2>
<div class="inside recount-stats-controls">
<p><?php esc_html_e( 'Use these tools to recount stats, delete test transactions, or reset stats.', 'give' ); ?></p>
<form method="post" id="give-tools-recount-form" class="give-export-form">
<?php wp_nonce_field( 'give_ajax_export', 'give_ajax_export' ); ?>
<select name="give-export-class" id="recount-stats-type">
<option value="0" selected="selected" disabled="disabled"><?php esc_html_e( 'Please select an option', 'give' ); ?></option>
<option data-type="recount-stats" value="Give_Tools_Recount_Income"><?php esc_html_e( 'Recalculate Total Donation Revenue Amount', 'give' ); ?></option>
<option data-type="recount-form" value="Give_Tools_Recount_Form_Stats"><?php esc_html_e( 'Recalculate Revenue Amount and Donation Counts for a Form', 'give' ); ?></option>
<option data-type="recount-all" value="Give_Tools_Recount_All_Stats"><?php esc_html_e( 'Recalculate Revenue Amount and Donation Counts for All Forms', 'give' ); ?></option>
<option data-type="recount-donor-stats" value="Give_Tools_Recount_Donor_Stats"><?php esc_html_e( 'Recalculate Donor Statistics', 'give' ); ?></option>
<option data-type="delete-test-transactions" value="Give_Tools_Delete_Test_Transactions"><?php esc_html_e( 'Delete Test Donations', 'give' ); ?></option>
<option data-type="delete-donations" value="Give_Tools_Delete_Donations"><?php esc_html_e( 'Delete Live and Test Donations', 'give' ); ?></option>
<option data-type="delete-test-donors" value="Give_Tools_Delete_Donors"><?php esc_html_e( 'Delete Test Donors and Donations', 'give' ); ?></option>
<option data-type="delete-import-donors" value="Give_Tools_Import_Donors"><?php esc_html_e( 'Delete Imported Donors and Donations', 'give' ); ?></option>
<option data-type="reset-stats" value="Give_Tools_Reset_Stats"><?php esc_html_e( 'Delete All Data', 'give' ); ?></option>
<?php
/**
* Fires in the recount stats selectbox.
*
* Allows you to add new recount tool option elements.
*
* @since 1.5
*/
do_action( 'give_recount_tool_options' );
?>
</select>
<span class="tools-form-dropdown tools-form-dropdown-recount-form" style="display: none">
<?php
$args = [
'class' => 'tools-form-dropdown-recount-form-select',
'name' => 'form_id',
'chosen' => true,
'placeholder' => esc_attr__( 'Select Form', 'give' ),
];
echo Give()->html->forms_dropdown( $args );
?>
</span>
<span class="tools-date-dropdown tools-date-dropdown-delete-donations" style="display: none">
<?php
echo Give()->html->date_field(
[
'id' => 'give_delete_donations_start_date',
'name' => 'delete_donations_start_date',
'placeholder' => esc_attr__( 'Start date', 'give' ),
'autocomplete' => 'off',
]
);
echo Give()->html->date_field(
[
'id' => 'give_delete_donations_end_date',
'name' => 'delete_donations_end_date',
'placeholder' => esc_attr__( 'End date', 'give' ),
'autocomplete' => 'off',
]
);
?>
</span>
<span class="tools-form-dropdown tools-form-dropdown-delete-import-donors" style="display: none">
<label for="delete-import-donors">
<?php
echo Give()->html->checkbox( [ 'name' => 'delete-import-donors' ] );
esc_html_e( 'Delete imported WordPress users', 'give' );
?>
</label>
</span>
<input type="submit" id="recount-stats-submit" value="<?php esc_attr_e( 'Submit', 'give' ); ?>" class="button-secondary"/>
<br/>
<span class="give-recount-stats-descriptions">
<span id="recount-stats"><?php esc_html_e( 'Recalculates the overall donation revenue amount.', 'give' ); ?></span>
<span id="recount-form"><?php esc_html_e( 'Recalculates the donation and revenue stats for a specific form.', 'give' ); ?></span>
<span id="recount-all"><?php esc_html_e( 'Recalculates the earnings and sales stats for all forms.', 'give' ); ?></span>
<span id="recount-customer-stats"><?php esc_html_e( 'Recalculates the lifetime value and donation counts for all donors.', 'give' ); ?></span>
<?php
/**
* Fires in the recount stats description area.
*
* Allows you to add new recount tool description text.
*
* @since 1.5
*/
do_action( 'give_recount_tool_descriptions' );
?>
<span id="delete-test-transactions"><strong><?php esc_html_e( 'Deletes', 'give' ); ?></strong> <?php esc_html_e( 'all TEST donations, donors, and related log entries.', 'give' ); ?></span>
<span id="delete-donations"><strong><?php esc_html_e( 'Deletes', 'give' ); ?></strong> <?php esc_html_e( 'all LIVE and TEST donations within a specified date range. If date range is not set then all donations are deleted. ', 'give' ); ?></span>
<span id="reset-stats"><strong><?php esc_html_e( 'Deletes', 'give' ); ?></strong> <?php esc_html_e( 'ALL donations, donors, and related log entries regardless of TEST or LIVE mode.', 'give' ); ?></span>
</span>
<span class="spinner"></span>
</form>
<?php
/**
* Fires after the recount form.
*
* Allows you to add new elements after the form.
*
* @since 1.5
*/
do_action( 'give_tools_recount_forms' );
?>
</div><!-- .inside -->
</div><!-- .postbox -->
</div><!-- #poststuff -->
<?php
/**
* Fires after displaying the recount stats tools.
*
* @since 1.5
*/
do_action( 'give_tools_recount_stats_after' );