Automattic\WooCommerce\Admin\Features\Fulfillments
FulfillmentsController::register
Initialize the controller.
Method of the class: FulfillmentsController{}
No Hooks.
Returns
null. Nothing (null).
Usage
$FulfillmentsController = new FulfillmentsController(); $FulfillmentsController->register();
FulfillmentsController::register() FulfillmentsController::register code WC 10.8.1
public function register() {
add_filter( 'woocommerce_data_stores', array( $this, 'register_data_stores' ) );
add_action( 'init', array( $this, 'initialize_fulfillments' ), 10, 0 );
}