Give_API_Keys_Table::get_columns PHP Method

get_columns() public method

Retrieve the table columns
Since: 1.1
public get_columns ( ) : array
return array $columns Array of all the list table columns
    public function get_columns()
    {
        $columns = array('user' => esc_html__('Username', 'give'), 'key' => esc_html__('Public Key', 'give'), 'token' => esc_html__('Token', 'give'), 'secret' => esc_html__('Secret Key', 'give'));
        return $columns;
    }