Lines:
1 to 33 of 33
<?php /** * Customer Reports Table Class * * @package EDD * @subpackage Reports * @copyright Copyright (c) 2018, Easy Digital Downloads, LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.5 */ // Exit if accessed directly defined( 'ABSPATH' ) || exit; use EDD\Admin\List_Table; /* class EDD_Customer_Reports_Table */ /* function EDD_Customer_Reports_Table::__construct() – Get things started */ /* function EDD_Customer_Reports_Table::get_primary_column_name() – Gets the name of the primary column. */ /* function EDD_Customer_Reports_Table::column_default() – This function renders most of the columns in the list table. */ /* function EDD_Customer_Reports_Table::column_name() – Return the contents of the "Name" column */ /* function EDD_Customer_Reports_Table::get_row_actions */ /* function EDD_Customer_Reports_Table::column_cb() – Render the checkbox column */ /* function EDD_Customer_Reports_Table::get_counts() – Retrieve the customer counts */ /* function EDD_Customer_Reports_Table::get_columns() – Retrieve the table columns */ /* function EDD_Customer_Reports_Table::get_sortable_columns() – Get the sortable columns */ /* function EDD_Customer_Reports_Table::get_bulk_actions() – Retrieve the bulk actions */ /* function EDD_Customer_Reports_Table::process_bulk_action() – Process the bulk actions */ /* function EDD_Customer_Reports_Table::reports_data() – Builds and retrieves all the reports data. */ /* function EDD_Customer_Reports_Table::get_data() – Retrieves all of the items to display, given the current filters. */ /* function EDD_Customer_Reports_Table::prepare_items() – Setup the final data for the table */