MailPoet\EmailEditor

Bootstrap::init()publicWC 1.0

Method of the class: Bootstrap{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Bootstrap = new Bootstrap();
$Bootstrap->init();

Bootstrap::init() code WC 9.8.4

public function init() {
	add_action('init', [
		$this,
		'initialize',
	]);

	add_filter('mailpoet_email_editor_initialized', [
		$this,
		'setupEmailEditorIntegrations',
	]);
}