Lines:
1 to 29 of 29
<?php /** * Batch Earnings Report Export Class. * * This class handles earnings report export. * * @package EDD * @subpackage Admin/Reports * @copyright Copyright (c) 2017, Sunny Ratilal * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 2.7 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* class EDD_Batch_Earnings_Report_Export */ /* function EDD_Batch_Earnings_Report_Export::headers() – Set the export headers. */ /* function EDD_Batch_Earnings_Report_Export::get_csv_cols() – Get the column headers for the Earnings Report */ /* function EDD_Batch_Earnings_Report_Export::get_status_cols() – Specifically retrieve the headers for supported order statuses. */ /* function EDD_Batch_Earnings_Report_Export::get_supported_statuses() – Get a list of the statuses supported in this report. */ /* function EDD_Batch_Earnings_Report_Export::print_csv_cols() – Output the CSV columns. */ /* function EDD_Batch_Earnings_Report_Export::print_csv_rows() – Print the CSV rows for the current step. */ /* function EDD_Batch_Earnings_Report_Export::get_data() – Get the Export Data. */ /* function EDD_Batch_Earnings_Report_Export::count() – Count the number of months we are dealing with. */ /* function EDD_Batch_Earnings_Report_Export::get_percentage_complete() – Return the calculated completion percentage */ /* function EDD_Batch_Earnings_Report_Export::set_properties() – Set the properties specific to the earnings report. */