Automattic\WooCommerce\EmailEditor

Bootstrap::setup_email_editor_integrationspublicWC 1.0

Setup email editor integrations.

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

Хуков нет.

Возвращает

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

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

$Bootstrap = new Bootstrap();
$Bootstrap->setup_email_editor_integrations(): bool;

Код Bootstrap::setup_email_editor_integrations() WC 10.0.2

public function setup_email_editor_integrations(): bool {
	$this->core_email_editor_integration->initialize();
	return true; // PHPStan expect returning a value from the filter.
}