Automattic\WooCommerce\Admin\API\Reports\Categories
Controller::get_datastore_data()
Get data from 'categories' Query.
Метод класса: Controller{}
Хуков нет.
Возвращает
Разное
. Results from the data store.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_datastore_data( $query_args );
- $query_args(массив)
- Query arguments.
По умолчанию: array()
Код Controller::get_datastore_data() Controller::get datastore data WC 9.3.3
protected function get_datastore_data( $query_args = array() ) { $query = new GenericQuery( $query_args, 'categories' ); return $query->get_data(); }