Lines:
1 to 31 of 31
<?php /** * Gateway Error Log View Class * * @package EDD * @subpackage Admin/Reports * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License */ // 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_Gateway_Error_Log_Table */ /* function EDD_Gateway_Error_Log_Table::__construct() – Get things started */ /* function EDD_Gateway_Error_Log_Table::get_primary_column_name() – Gets the name of the primary column. */ /* function EDD_Gateway_Error_Log_Table::column_default() – This function renders most of the columns in the list table. */ /* function EDD_Gateway_Error_Log_Table::column_message() – Output Error Message Column */ /* function EDD_Gateway_Error_Log_Table::get_columns() – Retrieve the table columns */ /* function EDD_Gateway_Error_Log_Table::get_paged() – Retrieve the current page number */ /* function EDD_Gateway_Error_Log_Table::bulk_actions() – Outputs the log views */ /* function EDD_Gateway_Error_Log_Table::get_logs() – Gets the log entries for the current view */ /* function EDD_Gateway_Error_Log_Table::prepare_items() – Setup the final data for the table */ /* function EDD_Gateway_Error_Log_Table::has_items() – Since our "bulk actions" are navigational, we want them to always show, not just when there’s items */