Lines:
1 to 30 of 30
<?php /** * Gateways Reports Table 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.5 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; // Load WP_List_Table if not loaded if ( ! class_exists( 'WP_List_Table' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; } /* class EDD_Gateawy_Reports_Table */ /* function EDD_Gateawy_Reports_Table::__construct() – Get things started */ /* function EDD_Gateawy_Reports_Table::get_primary_column_name() – Gets the name of the primary column. */ /* function EDD_Gateawy_Reports_Table::column_default() – This function renders most of the columns in the list table. */ /* function EDD_Gateawy_Reports_Table::get_columns() – Retrieve the table columns */ /* function EDD_Gateawy_Reports_Table::get_paged() – Retrieve the current page number */ /* function EDD_Gateawy_Reports_Table::bulk_actions() – Outputs the reporting views */ /* function EDD_Gateawy_Reports_Table::reports_data() – Build all the reports data */ /* function EDD_Gateawy_Reports_Table::prepare_items() – Setup the final data for the table */