Automattic\WooCommerce\Admin\API\Reports

DataStore::get_fields()protectedWC 1.0

Returns a comma separated list of the fields in the query_args, if there aren't, returns report_columns keys.

Method of the class: DataStore{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_fields( $query_args );
$query_args(array) (required)
Parameters supplied by the user.

DataStore::get_fields() code WC 8.6.1

protected function get_fields( $query_args ) {
	if ( isset( $query_args['fields'] ) && is_array( $query_args['fields'] ) ) {
		return $query_args['fields'];
	}
	return array_keys( $this->report_columns );
}