Lines:
1 to 35 of 35
<?php /** * API Key Table Class * * @package EDD * @subpackage Admin/Tools/APIKeys * @copyright Copyright (c) 2018, Easy Digital Downloads, LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 2.0 */ // Exit if accessed directly 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_API_Keys_Table */ /* function EDD_API_Keys_Table::__construct() – Get things started */ /* function EDD_API_Keys_Table::get_primary_column_name() – Gets the name of the primary column. */ /* function EDD_API_Keys_Table::column_default() – This function renders most of the columns in the list table. */ /* function EDD_API_Keys_Table::column_key() – Displays the public key rows */ /* function EDD_API_Keys_Table::column_token() – Displays the token rows */ /* function EDD_API_Keys_Table::column_secret() – Displays the secret key rows */ /* function EDD_API_Keys_Table::column_user() – Renders the column for the user field */ /* function EDD_API_Keys_Table::get_columns() – Retrieve the table columns */ /* function EDD_API_Keys_Table::bulk_actions() – Display the key generation form */ /* function EDD_API_Keys_Table::display_tablenav() – Generate the table navigation above or below the table */ /* function EDD_API_Keys_Table::query() – Performs the key query */ /* function EDD_API_Keys_Table::total_items() – Retrieve count of total users with keys */ /* function EDD_API_Keys_Table::prepare_items() – Setup the final data for the table */