You appear to be a bot. Output may be restricted
Description
Process the download file generated by a batch export
Usage
$void = edd_process_batch_export_download();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/admin/reporting/export/export-actions.php
Lines:
1 to 15 of 15
function edd_process_batch_export_download() { if ( ! wp_verify_nonce( $_REQUEST['nonce'], 'edd-batch-export' ) ) { wp_die( __( 'Nonce verification failed', 'easy-digital-downloads' ), __( 'Error', 'easy-digital-downloads' ), array( 'response' => 403 ) ); } require_once EDD_PLUGIN_DIR . 'includes/admin/reporting/export/class-batch-export.php'; do_action( 'edd_batch_export_class_include', $_REQUEST['class'] ); if ( class_exists( $_REQUEST['class'] ) && 'EDD_Batch_Export' === get_parent_class( $_REQUEST['class'] ) ) { $export = new $_REQUEST['class'](); $export->export(); } }