accessControl = $accessControl; $this->wp = $wp; $this->servicesChecker = $servicesChecker; $this->container = $container; $this->router = $router; $this->featuresController = $featuresController; $this->customFonts = $customFonts; } public function init() { $this->checkPremiumKey(); $this->wp->addAction( 'admin_menu', [ $this, 'setup', ] ); } public function setup() { if (!$this->accessControl->validatePermission(AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN)) return; $this->router->checkRedirects(); $this->registerMailPoetMenu(); // @ToDo Remove Beta once Automation is no longer beta. $this->wp->addAction('admin_head', function () { echo ''; }); if (!self::isOnMailPoetAdminPage()) { return; } $this->wp->doAction('mailpoet_conflict_resolver_styles'); $this->wp->doAction('mailpoet_conflict_resolver_scripts'); if ( !isset($_REQUEST['page']) || sanitize_text_field(wp_unslash($_REQUEST['page'])) !== 'mailpoet-newsletter-editor' ) { return; } // Disable WP emojis to not interfere with the newsletter editor emoji handling $this->disableWPEmojis(); if (!$this->customFonts->displayCustomFonts()) { return; } $this->wp->addAction('admin_head', function () { echo ''; }); } private function registerMailPoetMenu() { // Main page $this->wp->addMenuPage( 'MailPoet', 'MailPoet', AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, self::MAIN_PAGE_SLUG, null, self::ICON_BASE64_SVG, 30 ); // Emails page $newslettersPage = $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Emails', 'mailpoet')), esc_html__('Emails', 'mailpoet'), AccessControl::PERMISSION_MANAGE_EMAILS, self::MAIN_PAGE_SLUG, [ $this, 'newsletters', ] ); // add limit per page to screen options $this->wp->addAction('load-' . $newslettersPage, function() { $this->wp->addScreenOption('per_page', [ 'label' => _x( 'Number of newsletters per page', 'newsletters per page (screen options)', 'mailpoet' ), 'option' => 'mailpoet_newsletters_per_page', ]); }); // newsletter editor $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Newsletter', 'mailpoet')), esc_html__('Newsletter Editor', 'mailpoet'), AccessControl::PERMISSION_MANAGE_EMAILS, 'mailpoet-newsletter-editor', [ $this, 'newletterEditor', ] ); $this->registerAutomationMenu(); // Forms page $formsPage = $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Forms', 'mailpoet')), esc_html__('Forms', 'mailpoet'), AccessControl::PERMISSION_MANAGE_FORMS, 'mailpoet-forms', [ $this, 'forms', ] ); // add limit per page to screen options $this->wp->addAction('load-' . $formsPage, function() { $this->wp->addScreenOption('per_page', [ 'label' => _x( 'Number of forms per page', 'forms per page (screen options)', 'mailpoet' ), 'option' => 'mailpoet_forms_per_page', ]); }); // form editor $formEditorPage = $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Form Editor', 'mailpoet')), esc_html__('Form Editor', 'mailpoet'), AccessControl::PERMISSION_MANAGE_FORMS, 'mailpoet-form-editor', [ $this, 'formEditor', ] ); // add body class for form editor page $this->wp->addAction('load-' . $formEditorPage, function() { $this->wp->addFilter('admin_body_class', function ($classes) { return ltrim($classes . ' block-editor-page'); }); }); // form editor templates $formTemplateSelectionEditorPage = $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Select Form Template', 'mailpoet')), esc_html__('Select Form Template', 'mailpoet'), AccessControl::PERMISSION_MANAGE_FORMS, 'mailpoet-form-editor-template-selection', [ $this, 'formEditorTemplateSelection', ] ); // add body class for form editor page $this->wp->addAction('load-' . $formTemplateSelectionEditorPage, function() { $this->wp->addFilter('admin_body_class', function ($classes) { return ltrim($classes . ' block-editor-page'); }); }); // Subscribers page $subscribersPage = $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Subscribers', 'mailpoet')), esc_html__('Subscribers', 'mailpoet'), AccessControl::PERMISSION_MANAGE_SUBSCRIBERS, 'mailpoet-subscribers', [ $this, 'subscribers', ] ); // add limit per page to screen options $this->wp->addAction('load-' . $subscribersPage, function() { $this->wp->addScreenOption('per_page', [ 'label' => _x( 'Number of subscribers per page', 'subscribers per page (screen options)', 'mailpoet' ), 'option' => 'mailpoet_subscribers_per_page', ]); }); // import $this->wp->addSubmenuPage( 'admin.php?page=mailpoet-subscribers', $this->setPageTitle(__('Import', 'mailpoet')), esc_html__('Import', 'mailpoet'), AccessControl::PERMISSION_MANAGE_SUBSCRIBERS, 'mailpoet-import', [ $this, 'import', ] ); // export $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Export', 'mailpoet')), esc_html__('Export', 'mailpoet'), AccessControl::PERMISSION_MANAGE_SUBSCRIBERS, 'mailpoet-export', [ $this, 'export', ] ); // Segments page $segmentsPage = $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Lists', 'mailpoet')), esc_html__('Lists', 'mailpoet'), AccessControl::PERMISSION_MANAGE_SEGMENTS, 'mailpoet-segments', [ $this, 'segments', ] ); // add limit per page to screen options $this->wp->addAction('load-' . $segmentsPage, function() { $this->wp->addScreenOption('per_page', [ 'label' => _x( 'Number of segments per page', 'segments per page (screen options)', 'mailpoet' ), 'option' => 'mailpoet_segments_per_page', ]); }); // Settings page $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Settings', 'mailpoet')), esc_html__('Settings', 'mailpoet'), AccessControl::PERMISSION_MANAGE_SETTINGS, 'mailpoet-settings', [ $this, 'settings', ] ); // Help page $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Help', 'mailpoet')), esc_html__('Help', 'mailpoet'), AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, 'mailpoet-help', [ $this, 'help', ] ); // Upgrade page // Only show this page in menu if the Premium plugin is not activated $this->wp->addSubmenuPage( License::getLicense() ? true : self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Upgrade', 'mailpoet')), esc_html__('Upgrade', 'mailpoet'), AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, 'mailpoet-upgrade', [ $this, 'upgrade', ] ); // Welcome wizard page $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Welcome Wizard', 'mailpoet')), esc_html__('Welcome Wizard', 'mailpoet'), AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, 'mailpoet-welcome-wizard', [ $this, 'welcomeWizard', ] ); // WooCommerce Setup $this->wp->addSubmenuPage( true, $this->setPageTitle(__('WooCommerce Setup', 'mailpoet')), esc_html__('WooCommerce Setup', 'mailpoet'), AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, 'mailpoet-woocommerce-setup', [ $this, 'wooCommerceSetup', ] ); // Experimental page $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Experimental Features', 'mailpoet')), '', AccessControl::PERMISSION_MANAGE_FEATURES, 'mailpoet-experimental', [$this, 'experimentalFeatures'] ); // display loggs page $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Logs', 'mailpoet')), '', AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, 'mailpoet-logs', [$this, 'logs'] ); } private function registerAutomationMenu() { if (!$this->featuresController->isSupported(FeaturesController::AUTOMATION)) { return; } $this->wp->addSubmenuPage( self::MAIN_PAGE_SLUG, $this->setPageTitle(__('Automations', 'mailpoet')), // @ToDo Remove Beta once Automation is no longer beta. '' . esc_html__('Automations', 'mailpoet') . 'Beta', AccessControl::PERMISSION_MANAGE_EMAILS, 'mailpoet-automation', [$this, 'automation'] ); // Automation editor $automationEditorPage = $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Automation Editor', 'mailpoet')), esc_html__('Automation Editor', 'mailpoet'), AccessControl::PERMISSION_MANAGE_AUTOMATIONS, 'mailpoet-automation-editor', [$this, 'automationEditor'] ); // Automation templates $this->wp->addSubmenuPage( true, $this->setPageTitle(__('Automation Templates', 'mailpoet')), esc_html__('Automation Templates', 'mailpoet'), AccessControl::PERMISSION_MANAGE_AUTOMATIONS, 'mailpoet-automation-templates', [$this, 'automationTemplates'] ); // add body class for automation editor page $this->wp->addAction('load-' . $automationEditorPage, function() { $this->wp->addFilter('admin_body_class', function ($classes) { return ltrim($classes . ' site-editor-php'); }); }); } public function disableWPEmojis() { $this->wp->removeAction('admin_print_scripts', 'print_emoji_detection_script'); $this->wp->removeAction('admin_print_styles', 'print_emoji_styles'); } public function welcomeWizard() { $this->container->get(WelcomeWizard::class)->render(); } public function wooCommerceSetup() { $this->container->get(WooCommerceSetup::class)->render(); } public function upgrade() { $this->container->get(Upgrade::class)->render(); } public function settings() { $this->container->get(Settings::class)->render(); } public function help() { $this->container->get(Help::class)->render(); } public function automation() { $this->container->get(Automation::class)->render(); } public function automationTemplates() { $this->container->get(AutomationTemplates::class)->render(); } public function automationEditor() { $this->container->get(AutomationEditor::class)->render(); } public function experimentalFeatures() { $this->container->get(ExperimentalFeatures::class)->render(); } public function logs() { $this->container->get(Logs::class)->render(); } public function subscribers() { $this->container->get(Subscribers::class)->render(); } public function segments() { $this->container->get(Segments::class)->render(); } public function forms() { $this->container->get(Forms::class)->render(); } public function newsletters() { $this->container->get(Newsletters::class)->render(); } public function newletterEditor() { $this->container->get(NewsletterEditor::class)->render(); } public function import() { $this->container->get(SubscribersImport::class)->render(); } public function export() { $this->container->get(SubscribersExport::class)->render(); } public function formEditor() { $this->container->get(FormEditor::class)->render(); } public function formEditorTemplateSelection() { $this->container->get(FormEditor::class)->renderTemplateSelection(); } public function setPageTitle($title) { return sprintf( '%s - %s', __('MailPoet', 'mailpoet'), $title ); } public static function isOnMailPoetAdminPage(array $exclude = null, $screenId = null) { if (is_null($screenId)) { if (empty($_REQUEST['page'])) { return false; } $screenId = sanitize_text_field(wp_unslash($_REQUEST['page'])); } if (!empty($exclude)) { foreach ($exclude as $slug) { if (stripos($screenId, $slug) !== false) { return false; } } } return (stripos($screenId, 'mailpoet-') !== false); } /** * This error page is used when the initialization is failed * to display admin notices only */ public static function addErrorPage(AccessControl $accessControl) { if (!self::isOnMailPoetAdminPage() || !isset($_REQUEST['page'])) { return false; } $page = sanitize_text_field(wp_unslash($_REQUEST['page'])); // Check if page already exists if ( get_plugin_page_hook($page, '') || WPFunctions::get()->getPluginPageHook($page, self::MAIN_PAGE_SLUG) ) { return false; } WPFunctions::get()->addSubmenuPage( true, 'MailPoet', 'MailPoet', AccessControl::PERMISSION_ACCESS_PLUGIN_ADMIN, $page, [ __CLASS__, 'errorPageCallback', ] ); } public static function errorPageCallback() { // Used for displaying admin notices only } public function checkPremiumKey(ServicesChecker $checker = null) { $showNotices = isset($_SERVER['SCRIPT_NAME']) && stripos(sanitize_text_field(wp_unslash($_SERVER['SCRIPT_NAME'])), 'plugins.php') !== false; $checker = $checker ?: $this->servicesChecker; $this->premiumKeyValid = $checker->isPremiumKeyValid($showNotices); } }