Files
piratepoet/mailpoet/lib/Util/Notices/UnauthorizedEmailInNewslettersNotice.php
Rostislav Wolny f369e399ed Distinguish main page and emails page
There are some cases where we link or redirect to main page but
actually we want to redirect to emails page. It happens that currently they are
the same page, but we need to distinguish these cases for the future when
we switch the main page to new homepage.
[MAILPOET-4824]
2022-11-30 11:42:41 +01:00

71 lines
2.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
namespace MailPoet\Util\Notices;
use MailPoet\Config\Menu;
use MailPoet\Mailer\MailerError;
use MailPoet\Mailer\MailerLog;
use MailPoet\Newsletter\Renderer\EscapeHelper;
use MailPoet\Services\AuthorizedEmailsController;
use MailPoet\Settings\SettingsController;
use MailPoet\Util\Helpers;
use MailPoet\WP\Functions as WPFunctions;
class UnauthorizedEmailInNewslettersNotice {
const OPTION_NAME = 'unauthorized-email-in-newsletters-addresses-notice';
/** @var SettingsController */
private $settings;
/** @var WPFunctions */
private $wp;
public function __construct(
SettingsController $settings,
WPFunctions $wp
) {
$this->settings = $settings;
$this->wp = $wp;
}
public function init($shouldDisplay) {
$validationError = $this->settings->get(AuthorizedEmailsController::AUTHORIZED_EMAIL_ADDRESSES_ERROR_SETTING);
if ($shouldDisplay && isset($validationError['invalid_senders_in_newsletters'])) {
return $this->display($validationError);
}
}
public function display($validationError) {
$message = $this->getMessageText();
$message .= $this->getNewslettersLinks($validationError);
$message .= $this->getFixThisButton();
// Use Mailer log errors display system to display this notice
$mailerLog = MailerLog::setError(MailerLog::getMailerLog(), MailerError::OPERATION_AUTHORIZATION, $message);
MailerLog::updateMailerLog($mailerLog);
}
private function getMessageText() {
$message = __('<b>Your automatic emails have been paused</b> because some email addresses havent been authorized yet.', 'mailpoet');
return "<p>$message</p>";
}
private function getNewslettersLinks($validationError) {
$links = '';
foreach ($validationError['invalid_senders_in_newsletters'] as $error) {
// translators: %s is the newsletter subject.
$linkText = _x('Update the from address of %s', '%s will be replaced by a newsletter subject', 'mailpoet');
$linkText = str_replace('%s', EscapeHelper::escapeHtmlText($error['subject']), $linkText);
$linkUrl = $this->wp->adminUrl('admin.php?page=' . Menu::EMAILS_PAGE_SLUG . '#/send/' . $error['newsletter_id']);
$link = Helpers::replaceLinkTags("[link]{$linkText}[/link]", $linkUrl, ['target' => '_blank']);
$links .= "<p>$link</p>";
}
return $links;
}
private function getFixThisButton() {
$button = '<button class="button button-primary mailpoet-js-button-fix-this">' . __('Fix this!', 'mailpoet') . '</button>';
return "<p>$button</p>";
}
}