Automattic\WooCommerce\Admin\API\Reports\Downloads
DataStore::get_included_customers
Returns comma separated ids of included customers, based on query arguments from the user.
Метод класса: DataStore{}
Хуков нет.
Возвращает
Строку.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_included_customers( $query_args );
- $query_args(массив) (обязательный)
- Parameters supplied by the user.
Код DataStore::get_included_customers() DataStore::get included customers WC 10.5.2
protected function get_included_customers( $query_args ) {
return self::get_filtered_ids( $query_args, 'customer_includes' );
}