Automattic\WooCommerce\Admin\API\Reports\Downloads
DataStore::get_excluded_ip_addresses()
Returns comma separated ids of excluded ip address, 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_excluded_ip_addresses( $query_args );
- $query_args(array) (required)
- Parameters supplied by the user.
DataStore::get_excluded_ip_addresses() DataStore::get excluded ip addresses code WC 9.3.3
protected function get_excluded_ip_addresses( $query_args ) { return $this->get_filtered_ip_addresses( $query_args, 'ip_address_excludes' ); }