You appear to be a bot. Output may be restricted
Description
Perform the export
Usage
$void = EDD_Export::export();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/admin/reporting/class-export.php
Lines:
1 to 15 of 15
public function export() { if ( ! $this->can_export() ) wp_die( __( 'You do not have permission to export data.', 'easy-digital-downloads' ), __( 'Error', 'easy-digital-downloads' ), array( 'response' => 403 ) ); // Set headers $this->headers(); // Output CSV columns (headers) $this->csv_cols_out(); // Output CSV rows $this->csv_rows_out(); edd_die(); }