Automattic\WooCommerce\Blocks\BlockTypes\OrderConfirmation

CreateAccount::initialize()protectedWC 1.0

Initialize this block type.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->initialize();

Код CreateAccount::initialize() WC 9.8.5

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

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