You appear to be a bot. Output may be restricted
Description
Get the data being exported
Usage
$array = EDD_Export::get_data();
Parameters
Returns
array $data Data for Export
Source
File name: easy-digital-downloads/includes/admin/reporting/class-export.php
Lines:
1 to 18 of 18
public function get_data() { // Just a sample data array $data = array( 0 => array( 'id' => '', 'data' => date( 'F j, Y' ) ), 1 => array( 'id' => '', 'data' => date( 'F j, Y' ) ) ); $data = apply_filters( 'edd_export_get_data', $data ); $data = apply_filters( 'edd_export_get_data_' . $this->export_type, $data ); return $data; }