Automattic\WooCommerce\Admin\API\Reports

DataStore::get_included_users()protectedWC 1.0

Returns comma separated ids of included users, 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_users( $query_args );
$query_args(array) (required)
Parameters supplied by the user.

DataStore::get_included_users() code WC 8.7.0

protected function get_included_users( $query_args ) {
	return $this->get_filtered_ids( $query_args, 'user_includes' );
}