Automattic\WooCommerce\Internal\DataStores\Orders

CustomOrdersTableController::show_feature()publicWC 1.0

Method of the class: CustomOrdersTableController{}

No Hooks.

Return

null. Nothing (null).

Usage

$CustomOrdersTableController = new CustomOrdersTableController();
$CustomOrdersTableController->*;

CustomOrdersTableController::show_feature() code WC 8.6.1

*
* @param \WC_Object_Data_Store_Interface|string $default_data_store The default data store (as received via the woocommerce_order_data_store hook).
*
* @return \WC_Object_Data_Store_Interface|string The actual data store to use.
*/
	private function get_orders_data_store( $default_data_store ) {
		return $this->get_data_store_instance( $default_data_store, 'order' );
	}

	/**
* Gets the instance of the refunds data store to use.
*