esc_html__( 'API Key', 'opalestate-pro' ), // Singular name of the listed records 'plural' => esc_html__( 'API Keys', 'opalestate-pro' ), // Plural name of the listed records 'ajax' => false // Does this table support ajax? ) ); $this->query(); } /** * This function renders most of the columns in the list table. * * @access public * @since 1.1 * * @param array $item Contains all the data of the keys * @param string $column_name The name of the column * * @return string Column Name */ public function column_default( $item, $column_name ) { return $item[ $column_name ]; } /** * Displays the public key rows * * @access public * @since 1.1 * * @param array $item Contains all the data of the keys * @param string $column_name The name of the column * * @return string Column Name */ public function column_key( $item ) { return ''; } /** * Displays the token rows * * @access public * @since 1.1 * * @param array $item Contains all the data of the keys * @param string $column_name The name of the column * * @return string Column Name */ public function column_token( $item ) { return ''; } /** * Displays the secret key rows * * @access public * @since 1.1 * * @param array $item Contains all the data of the keys * @param string $column_name The name of the column * * @return string Column Name */ public function column_secret( $item ) { return ''; } /** * Renders the column for the user field * * @access public * @since 1.1 * @return void */ public function column_user( $item ) { $actions = array(); if ( apply_filters( 'opalestate_api_log_requests', true ) ) { $actions['view'] = sprintf( '%s', esc_url( add_query_arg( array( 'view' => 'api_requests', 'post_type' => 'opalestate_forms', 'page' => 'opalestate-reports', 'tab' => 'logs', 's' => $item['email'] ), 'edit.php' ) ), esc_html__( 'View API Log', 'opalestate-pro' ) ); } $actions['reissue'] = sprintf( '%s', esc_url( wp_nonce_url( add_query_arg( array( 'user_id' => $item['id'], 'opalestate_action' => 'process_api_key', 'opalestate_api_process' => 'regenerate' ) ), 'opalestate-api-nonce' ) ), esc_html__( 'Reissue', 'opalestate-pro' ) ); $actions['revoke'] = sprintf( '%s', esc_url( wp_nonce_url( add_query_arg( array( 'user_id' => $item['id'], 'opalestate_action' => 'process_api_key', 'opalestate_api_process' => 'revoke' ) ), 'opalestate-api-nonce' ) ), esc_html__( 'Revoke', 'opalestate-pro' ) ); $actions = apply_filters( 'opalestate_api_row_actions', array_filter( $actions ) ); return sprintf( '%1$s %2$s', $item['user'], $this->row_actions( $actions ) ); } /** * Retrieve the table columns * * @access public * @since 1.1 * @return array $columns Array of all the list table columns */ public function get_columns() { $columns = array( 'user' => esc_html__( 'Username' , 'opalestate-pro' ), 'key' => esc_html__( 'Public Key' , 'opalestate-pro' ), 'token' => esc_html__( 'Token' , 'opalestate-pro' ), 'secret' => esc_html__( 'Secret Key' , 'opalestate-pro' ) ); return $columns; } /** * Generate the table navigation above or below the table * * @since 3.1.0 * @access protected * @param string $which */ protected function display_tablenav( $which ) { if ( 'top' === $which ) { wp_nonce_field( 'bulk-' . $this->_args['plural'] ); } ?>