OwlCyberSecurity - MANAGER
Edit File: BlackFridayNotice.php
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\Util\Notices; if (!defined('ABSPATH')) exit; use MailPoet\Config\ServicesChecker; use MailPoet\Util\License\Features\Subscribers; use MailPoet\WP\Functions as WPFunctions; use MailPoet\WP\Notice as WPNotice; class BlackFridayNotice { const OPTION_NAME = 'dismissed-black-friday-notice'; const DISMISS_NOTICE_TIMEOUT_SECONDS = 2592000; // 30 days const DATE_FROM = '2024-11-27 15:00:00 UTC'; const DATE_TO = '2024-12-03 15:00:00 UTC'; const PARAM_REF = 'sale-bfcm-2024-plugin'; const PARAM_UTM_CAMPAIGN = 'sale_bfcm_2024'; /** @var ServicesChecker */ private $servicesChecker; /** @var Subscribers */ private $subscribers; public function __construct( ServicesChecker $servicesChecker, Subscribers $subscribers ) { $this->servicesChecker = $servicesChecker; $this->subscribers = $subscribers; } public function init($shouldDisplay) { $shouldDisplay = $shouldDisplay && !$this->servicesChecker->isBundledSubscription() && (time() >= strtotime(self::DATE_FROM)) && (time() <= strtotime(self::DATE_TO)) && !get_transient(self::OPTION_NAME); if ($shouldDisplay) { $this->display(); } } private function display() { $header = '<h3 class="mailpoet-h3">' . __('Save 40% on all MailPoet annual plans and upgrades', 'mailpoet') . '</h3>'; $body = '<h5 class="mailpoet-h5">' . __('For a limited time, save 40% when you switch to (or upgrade) an annual plan — no coupon needed. Offer ends at 3 pm UTC, December 3, 2024.', 'mailpoet') . '</h5>'; $link = "<p><a href='" . $this->getSaleUrl() . "' class='mailpoet-button button-primary' target='_blank'>" // translators: a button on a sale banner . __('Pick a plan and save big', 'mailpoet') . '</a></p>'; $extraClasses = 'mailpoet-dismissible-notice is-dismissible'; WPNotice::displaySuccess($header . $body . $link, $extraClasses, self::OPTION_NAME, false); } public function disable() { WPFunctions::get()->setTransient(self::OPTION_NAME, true, self::DISMISS_NOTICE_TIMEOUT_SECONDS); } private function getSaleUrl(): string { $params = 'ref=' . self::PARAM_REF . '&utm_source=plugin&utm_medium=banner&utm_campaign=' . self::PARAM_UTM_CAMPAIGN; $partialApiKey = $this->servicesChecker->generatePartialApiKey(); if ($partialApiKey) { return 'https://account.mailpoet.com/orders/upgrade/' . $partialApiKey . '?' . $params; } return 'https://account.mailpoet.com/?s=' . $this->subscribers->getSubscribersCount() . '&' . $params; } }