Automattic\WooCommerce\Admin\API\Reports\Categories
DataStore::normalize_order_by
Maps ordering specified by the user to columns in the database/fields in the data.
Method of the class: DataStore{}
No Hooks.
Returns
string.
Usage
// protected - for code of main (parent) or child class $result = $this->normalize_order_by( $order_by );
- $order_by(string) (required)
- Sorting criterion.
DataStore::normalize_order_by() DataStore::normalize order by code WC 11.0.1
protected function normalize_order_by( $order_by ) {
if ( 'date' === $order_by ) {
return 'time_interval';
}
if ( 'category' === $order_by ) {
return '_terms.name';
}
return $order_by;
}