Automattic\WooCommerce\Admin\API\Reports\Downloads

DataStore::get_included_ip_addresses()protectedWC 1.0

Returns comma separated ids of included ip address, based on query arguments from the user.

Method of the class: DataStore{}

No Hooks.

Returns

String.

Usage

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

DataStore::get_included_ip_addresses() code WC 9.8.4

protected function get_included_ip_addresses( $query_args ) {
	return $this->get_filtered_ip_addresses( $query_args, 'ip_address_includes' );
}