mailpoet
Last commit date
assets
2 years ago
generated
2 years ago
lang
2 years ago
lib
2 years ago
lib-3rd-party
2 years ago
vendor
2 years ago
vendor-prefixed
2 years ago
views
2 years ago
index.php
3 years ago
license.txt
4 years ago
mailpoet-cron.php
2 years ago
mailpoet.php
2 years ago
mailpoet_initializer.php
3 years ago
readme.txt
2 years ago
mailpoet.php
195 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | |
| 5 | |
| 6 | /* |
| 7 | * Plugin Name: MailPoet |
| 8 | * Version: 4.41.3 |
| 9 | * Plugin URI: https://www.mailpoet.com |
| 10 | * Description: Create and send newsletters, post notifications and welcome emails from your WordPress. |
| 11 | * Author: MailPoet |
| 12 | * Author URI: https://www.mailpoet.com |
| 13 | * Requires at least: 6.3 |
| 14 | * Text Domain: mailpoet |
| 15 | * Domain Path: /lang |
| 16 | * |
| 17 | * WC requires at least: 8.3.0 |
| 18 | * WC tested up to: 8.4.0 |
| 19 | * |
| 20 | * @package WordPress |
| 21 | * @author MailPoet |
| 22 | * @since 3.0.0-beta.1 |
| 23 | */ |
| 24 | |
| 25 | $mailpoetPlugin = [ |
| 26 | 'version' => '4.41.3', |
| 27 | 'filename' => __FILE__, |
| 28 | 'path' => dirname(__FILE__), |
| 29 | 'autoloader' => dirname(__FILE__) . '/vendor/autoload.php', |
| 30 | 'initializer' => dirname(__FILE__) . '/mailpoet_initializer.php', |
| 31 | ]; |
| 32 | |
| 33 | const MAILPOET_MINIMUM_REQUIRED_WP_VERSION = '6.3'; |
| 34 | const MAILPOET_MINIMUM_REQUIRED_WOOCOMMERCE_VERSION = '7.9';// Older versions lead to fatal errors |
| 35 | |
| 36 | function mailpoet_deactivate_plugin() { |
| 37 | deactivate_plugins(plugin_basename(__FILE__)); |
| 38 | if (!empty($_GET['activate'])) { |
| 39 | unset($_GET['activate']); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // Check for minimum supported WP version |
| 44 | if (version_compare(get_bloginfo('version'), MAILPOET_MINIMUM_REQUIRED_WP_VERSION, '<')) { |
| 45 | add_action('admin_notices', 'mailpoet_wp_version_notice'); |
| 46 | // deactivate the plugin |
| 47 | add_action('admin_init', 'mailpoet_deactivate_plugin'); |
| 48 | return; |
| 49 | } |
| 50 | |
| 51 | // Check for minimum supported PHP version |
| 52 | if (version_compare(phpversion(), '7.4.0', '<')) { |
| 53 | add_action('admin_notices', 'mailpoet_php_version_notice'); |
| 54 | // deactivate the plugin |
| 55 | add_action('admin_init', 'mailpoet_deactivate_plugin'); |
| 56 | return; |
| 57 | } |
| 58 | |
| 59 | // Check for minimum supported WooCommerce version |
| 60 | if (!function_exists('is_plugin_active')) { |
| 61 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 62 | } |
| 63 | if (is_plugin_active('woocommerce/woocommerce.php')) { |
| 64 | $woocommerceVersion = get_plugin_data(WP_PLUGIN_DIR . '/woocommerce/woocommerce.php')['Version']; |
| 65 | if (version_compare($woocommerceVersion, MAILPOET_MINIMUM_REQUIRED_WOOCOMMERCE_VERSION, '<')) { |
| 66 | add_action('admin_notices', 'mailpoet_woocommerce_version_notice'); |
| 67 | // deactivate the plugin |
| 68 | add_action('admin_init', 'mailpoet_deactivate_plugin'); |
| 69 | return; |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | // Display WP version error notice |
| 74 | function mailpoet_wp_version_notice() { |
| 75 | $notice = str_replace( |
| 76 | '[link]', |
| 77 | '<a href="https://kb.mailpoet.com/article/152-minimum-requirements-for-mailpoet-3#wp_version" target="_blank">', |
| 78 | sprintf( |
| 79 | // translators: %s is the number of minimum WordPress version that MailPoet requires |
| 80 | __('MailPoet plugin requires WordPress version %s or newer. Please read our [link]instructions[/link] on how to resolve this issue.', 'mailpoet'), |
| 81 | MAILPOET_MINIMUM_REQUIRED_WP_VERSION |
| 82 | ) |
| 83 | ); |
| 84 | $notice = str_replace('[/link]', '</a>', $notice); |
| 85 | printf( |
| 86 | '<div class="error"><p>%1$s</p></div>', |
| 87 | wp_kses( |
| 88 | $notice, |
| 89 | [ |
| 90 | 'a' => [ |
| 91 | 'href' => true, |
| 92 | 'target' => true, |
| 93 | ], |
| 94 | ] |
| 95 | ) |
| 96 | ); |
| 97 | } |
| 98 | |
| 99 | // Display WooCommerce version error notice |
| 100 | function mailpoet_woocommerce_version_notice() { |
| 101 | $notice = str_replace( |
| 102 | '[link]', |
| 103 | '<a href="https://kb.mailpoet.com/article/152-minimum-requirements-for-mailpoet-3#woocommerce-version" target="_blank">', |
| 104 | sprintf( |
| 105 | // translators: %s is the number of minimum WooCommerce version that MailPoet requires |
| 106 | __('MailPoet plugin requires WooCommerce version %s or newer. Please update your WooCommerce plugin version, or read our [link]instructions[/link] for additional options on how to resolve this issue.', 'mailpoet'), |
| 107 | MAILPOET_MINIMUM_REQUIRED_WOOCOMMERCE_VERSION |
| 108 | ) |
| 109 | ); |
| 110 | $notice = str_replace('[/link]', '</a>', $notice); |
| 111 | printf( |
| 112 | '<div class="error"><p>%1$s</p></div>', |
| 113 | wp_kses( |
| 114 | $notice, |
| 115 | [ |
| 116 | 'a' => [ |
| 117 | 'href' => true, |
| 118 | 'target' => true, |
| 119 | ], |
| 120 | ] |
| 121 | ) |
| 122 | ); |
| 123 | } |
| 124 | |
| 125 | // Display PHP version error notice |
| 126 | function mailpoet_php_version_notice() { |
| 127 | $noticeP1 = __('MailPoet requires PHP version 7.4 or newer (8.1 recommended). You are running version [version].', 'mailpoet'); |
| 128 | $noticeP1 = str_replace('[version]', phpversion(), $noticeP1); |
| 129 | |
| 130 | $noticeP2 = __('Please read our [link]instructions[/link] on how to upgrade your site.', 'mailpoet'); |
| 131 | $noticeP2 = str_replace( |
| 132 | '[link]', |
| 133 | '<a href="https://kb.mailpoet.com/article/251-upgrading-the-websites-php-version" target="_blank">', |
| 134 | $noticeP2 |
| 135 | ); |
| 136 | $noticeP2 = str_replace('[/link]', '</a>', $noticeP2); |
| 137 | |
| 138 | $noticeP3 = __('If you can’t upgrade the PHP version, [link]install this version[/link] of MailPoet. Remember to not update MailPoet ever again!', 'mailpoet'); |
| 139 | $noticeP3 = str_replace( |
| 140 | '[link]', |
| 141 | '<a href="https://downloads.wordpress.org/plugin/mailpoet.4.38.0.zip" target="_blank">', |
| 142 | $noticeP3 |
| 143 | ); |
| 144 | $noticeP3 = str_replace('[/link]', '</a>', $noticeP3); |
| 145 | |
| 146 | $allowedTags = [ |
| 147 | 'a' => [ |
| 148 | 'href' => true, |
| 149 | 'target' => true, |
| 150 | ], |
| 151 | ]; |
| 152 | printf( |
| 153 | '<div class="error"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>', |
| 154 | esc_html($noticeP1), |
| 155 | wp_kses( |
| 156 | $noticeP2, |
| 157 | $allowedTags |
| 158 | ), |
| 159 | wp_kses( |
| 160 | $noticeP3, |
| 161 | $allowedTags |
| 162 | ) |
| 163 | ); |
| 164 | } |
| 165 | |
| 166 | if (isset($_SERVER['SERVER_SOFTWARE']) && strpos(strtolower(sanitize_text_field(wp_unslash($_SERVER['SERVER_SOFTWARE']))), 'microsoft-iis') !== false) { |
| 167 | add_action('admin_notices', 'mailpoet_microsoft_iis_notice'); |
| 168 | // deactivate the plugin |
| 169 | add_action('admin_init', 'mailpoet_deactivate_plugin'); |
| 170 | return; |
| 171 | } |
| 172 | |
| 173 | // Display IIS server error notice |
| 174 | function mailpoet_microsoft_iis_notice() { |
| 175 | $notice = __("MailPoet plugin cannot run under Microsoft's Internet Information Services (IIS) web server. We recommend that you use a web server powered by Apache or NGINX.", 'mailpoet'); |
| 176 | printf('<div class="error"><p>%1$s</p></div>', esc_html($notice)); |
| 177 | } |
| 178 | |
| 179 | // Check for presence of core dependencies |
| 180 | if (!file_exists($mailpoetPlugin['autoloader']) || !file_exists($mailpoetPlugin['initializer'])) { |
| 181 | add_action('admin_notices', 'mailpoet_core_dependency_notice'); |
| 182 | // deactivate the plugin |
| 183 | add_action('admin_init', 'mailpoet_deactivate_plugin'); |
| 184 | return; |
| 185 | } |
| 186 | |
| 187 | // Display missing core dependencies error notice |
| 188 | function mailpoet_core_dependency_notice() { |
| 189 | $notice = __('MailPoet cannot start because it is missing core files. Please reinstall the plugin.', 'mailpoet'); |
| 190 | printf('<div class="error"><p>%1$s</p></div>', esc_html($notice)); |
| 191 | } |
| 192 | |
| 193 | // Initialize plugin |
| 194 | require_once($mailpoetPlugin['initializer']); |
| 195 |