You appear to be a bot. Output may be restricted
Description
Set the CSV columns
Usage
$array = EDD_Batch_File_Downloads_Export::csv_cols();
Parameters
Returns
array $cols All the columns
Source
File name: easy-digital-downloads/includes/admin/reporting/export/class-batch-export-file-downloads.php
Lines:
1 to 12 of 12
public function csv_cols() { $cols = array( 'date' => __( 'Date', 'easy-digital-downloads' ), 'user' => __( 'Downloaded by', 'easy-digital-downloads' ), 'ip' => __( 'IP Address', 'easy-digital-downloads' ), 'download' => __( 'Product', 'easy-digital-downloads' ), 'file' => __( 'File', 'easy-digital-downloads' ) ); return $cols; }