Automattic\WooCommerce\Internal\DataStores\Orders

CustomOrdersTableController::get_orders_data_store()privateWC 1.0

Gets the instance of the orders data store to use.

Метод класса: CustomOrdersTableController{}

Хуков нет.

Возвращает

\WC_Object_Data_Store_Interface|Строку. The actual data store to use.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->get_orders_data_store( $default_data_store );
$default_data_store(\WC_Object_Data_Store_Interface|строка) (обязательный)
The default data store (as received via the woocommerce_order_data_store hook).

Код CustomOrdersTableController::get_orders_data_store() WC 8.7.0

private function get_orders_data_store( $default_data_store ) {
	return $this->get_data_store_instance( $default_data_store, 'order' );
}