Automattic\WooCommerce\Internal\DataStores\Orders
CustomOrdersTableController::init()
Class initialization, invoked by the DI container.
Метод класса: CustomOrdersTableController{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$CustomOrdersTableController = new CustomOrdersTableController(); $CustomOrdersTableController->init(;
Код CustomOrdersTableController::init() CustomOrdersTableController::init WC 7.3.0
final public function init( OrdersTableDataStore $data_store, DataSynchronizer $data_synchronizer, OrdersTableRefundDataStore $refund_data_store, BatchProcessingController $batch_processing_controller, FeaturesController $features_controller ) { $this->data_store = $data_store; $this->data_synchronizer = $data_synchronizer; $this->batch_processing_controller = $batch_processing_controller; $this->refund_data_store = $refund_data_store; $this->features_controller = $features_controller; }