Automattic\WooCommerce\Admin\API\Reports
DataStore::get_included_orders()
Returns comma separated ids of included orders, based on query arguments from the user.
Method of the class: DataStore{}
No Hooks.
Return
String
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_included_orders( $query_args );
- $query_args(array) (required)
- Parameters supplied by the user.
DataStore::get_included_orders() DataStore::get included orders code WC 9.3.3
protected function get_included_orders( $query_args ) { return $this->get_filtered_ids( $query_args, 'order_includes' ); }