Lines:
1 to 39 of 39
<?php /** * Payment History Table Class * * @package EDD * @subpackage Admin/Payments * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.4 */ // 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_Payment_History_Table */ /* function EDD_Payment_History_Table::__construct() – Get things started */ /* function EDD_Payment_History_Table::advanced_filters() – */ /* function EDD_Payment_History_Table::search_box() – Show the search field */ /* function EDD_Payment_History_Table::get_views() – Retrieve the view types */ /* function EDD_Payment_History_Table::get_columns() – Retrieve the table columns */ /* function EDD_Payment_History_Table::get_sortable_columns() – Retrieve the table’s sortable columns */ /* function EDD_Payment_History_Table::get_primary_column_name() – Gets the name of the primary column. */ /* function EDD_Payment_History_Table::column_default() – This function renders most of the columns in the list table. */ /* function EDD_Payment_History_Table::column_email() – Render the Email Column */ /* function EDD_Payment_History_Table::column_cb() – Render the checkbox column */ /* function EDD_Payment_History_Table::column_ID() – Render the ID column */ /* function EDD_Payment_History_Table::column_customer() – Render the Customer Column */ /* function EDD_Payment_History_Table::get_bulk_actions() – Retrieve the bulk actions */ /* function EDD_Payment_History_Table::process_bulk_action() – Process the bulk actions */ /* function EDD_Payment_History_Table::get_payment_counts() – Retrieve the payment counts */ /* function EDD_Payment_History_Table::payments_data() – Retrieve all the data for all the payments */ /* function EDD_Payment_History_Table::prepare_items() – Setup the final data for the table */