Lines:
1 to 27 of 27
<?php /** * Export Class * * This is the base class for all export methods. Each data export type (customers, payments, etc) extend this class * * @package EDD * @subpackage Admin/Reports * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.4.4 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* class EDD_Export */ /* function EDD_Export::can_export() – Can we export? */ /* function EDD_Export::headers() – Set the export headers */ /* function EDD_Export::csv_cols() – Set the CSV columns */ /* function EDD_Export::get_csv_cols() – Retrieve the CSV columns */ /* function EDD_Export::csv_cols_out() – Output the CSV columns */ /* function EDD_Export::get_data() – Get the data being exported */ /* function EDD_Export::csv_rows_out() – Output the CSV rows */ /* function EDD_Export::export() – Perform the export */