Give_API_Keys_Table::get_columns PHP 메소드

get_columns() 공개 메소드

Retrieve the table columns
부터: 1.1
public get_columns ( ) : array
리턴 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;
    }