Automattic\WooCommerce\Blocks\BlockTypes\OrderConfirmation

CreateAccount::initialize()protectedWC 1.0

Initialize this block type.

Method of the class: CreateAccount{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->initialize();

CreateAccount::initialize() code WC 9.6.0

protected function initialize() {
	parent::initialize();

	if ( $this->is_feature_enabled() ) {
		$this->initialize_hooks();
	}
}