Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
really-simple-ssl
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php defined('ABSPATH') or die("you do not have access to this page!"); if (!function_exists('rsssl_activation_check')) { function rsssl_activation_check() { if (version_compare(PHP_VERSION, '5.6', '<')) { deactivate_plugins(plugin_basename(__FILE__)); wp_die(__('Really Simple SSL cannot be activated. The plugin requires PHP 5.6 or higher', 'really-simple-ssl')); } global $wp_version; if (version_compare($wp_version, '4.8', '<')) { deactivate_plugins(plugin_basename(__FILE__)); wp_die(__('Really Simple SSL cannot be activated. The plugin requires WordPress 4.8 or higher', 'really-simple-ssl')); } } register_activation_hook(__FILE__, 'rsssl_activation_check'); } if (!function_exists('rsssl_le_activation_check')) { function rsssl_le_activation_check() { update_option("rsssl_activated_plugin", true); } register_activation_hook(__FILE__, 'rsssl_le_activation_check'); } class REALLY_SIMPLE_SSL { private static $instance; public $rsssl_front_end; public $rsssl_mixed_content_fixer; public $rsssl_multisite; public $rsssl_cache; public $rsssl_server; public $really_simple_ssl; public $rsssl_help; public $rsssl_certificate; private function __construct() { if (isset($_GET['rsssl_apitoken']) && $_GET['rsssl_apitoken'] == get_option('rsssl_csp_report_token')) { if (!defined('RSSSL_DOING_CSP')) { define('RSSSL_DOING_CSP', true); } } } public static function instance() { if (!isset(self::$instance) && !self::$instance instanceof REALLY_SIMPLE_SSL) { self::$instance = new REALLY_SIMPLE_SSL(); self::$instance->setup_constants(); self::$instance->includes(); self::$instance->rsssl_front_end = new rsssl_front_end(); self::$instance->rsssl_mixed_content_fixer = new rsssl_mixed_content_fixer(); $wpcli = defined('WP_CLI') && WP_CLI; if (is_admin() || wp_doing_cron() || is_multisite() || $wpcli || defined('RSSSL_DOING_SYSTEM_STATUS') || defined('RSSSL_DOING_CSP')) { if (is_multisite()) { self::$instance->rsssl_multisite = new rsssl_multisite(); } self::$instance->rsssl_cache = new rsssl_cache(); self::$instance->rsssl_server = new rsssl_server(); self::$instance->really_simple_ssl = new rsssl_admin(); self::$instance->rsssl_help = new rsssl_help(); self::$instance->rsssl_certificate = new rsssl_certificate(); self::$instance->rsssl_site_health = new rsssl_site_health(); if ($wpcli) { self::$instance->rsssl_wp_cli = new rsssl_wp_cli(); } } self::$instance->hooks(); } return self::$instance; } private function setup_constants() { define('rsssl_le_php_version', '7.1'); define('rsssl_url', plugin_dir_url(__FILE__)); define('rsssl_path', trailingslashit(plugin_dir_path(__FILE__))); define('rsssl_template_path', trailingslashit(plugin_dir_path(__FILE__)) . 'grid/templates/'); define('rsssl_plugin', plugin_basename(__FILE__)); define('rsssl_add_on_version_requirement', '5.1'); if (!defined('rsssl_file')) { define('rsssl_file', __FILE__); } $debug = defined('RSSSL_DEBUG') && RSSSL_DEBUG ? time() : ''; define('rsssl_version', '5.1.2' . $debug); define('rsssl_le_cron_generation_renewal_check', 20); define('rsssl_le_manual_generation_renewal_check', 15); } private function includes() { require_once rsssl_path . 'class-front-end.php'; require_once rsssl_path . 'class-mixed-content-fixer.php'; $wpcli = defined('WP_CLI') && WP_CLI; if ($wpcli) { require_once rsssl_path . 'class-rsssl-wp-cli.php'; } if (is_admin() || wp_doing_cron() || is_multisite() || $wpcli || defined('RSSSL_DOING_SYSTEM_STATUS') || defined('RSSSL_DOING_CSP')) { if (is_multisite()) { require_once rsssl_path . 'class-multisite.php'; require_once rsssl_path . 'multisite-cron.php'; } require_once rsssl_path . 'class-admin.php'; require_once rsssl_path . 'class-cache.php'; require_once rsssl_path . 'class-server.php'; require_once rsssl_path . 'class-help.php'; require_once rsssl_path . 'class-certificate.php'; require_once rsssl_path . 'class-site-health.php'; } if (is_admin() || wp_doing_cron()) { if (!defined('rsssl_beta_addon')) { require_once rsssl_path . 'lets-encrypt/letsencrypt.php'; } } if (version_compare(PHP_VERSION, rsssl_le_php_version, '>=')) { require_once rsssl_path . 'lets-encrypt/cron.php'; } } private function hooks() { if (is_admin()) { add_action('admin_notices', array($this, 'admin_notices')); do_action('rsssl_admin_init'); } add_action('wp_loaded', array(self::$instance->rsssl_front_end, 'force_ssl'), 20); if (is_admin() || is_multisite()) { add_action('plugins_loaded', array(self::$instance->really_simple_ssl, 'init'), 10); } } public static function admin_notices() { $screen = get_current_screen(); if ($screen->base === 'post') { return; } if (self::has_old_addon('really-simple-ssl-pro/really-simple-ssl-pro.php') || self::has_old_addon('really-simple-ssl-pro-multisite/really-simple-ssl-pro-multisite.php') || self::has_old_addon('really-simple-ssl-social/really-simple-social.php')) { ?> <div id="message" class="error notice really-simple-plugins"> <h1><?php echo __("Plugin dependency error", "really-simple-ssl"); ?></h1> <p><?php echo __("You have a premium add-on with a version that is not compatible with the >4.0 release of Really Simple SSL.", "really-simple-ssl"); ?></p> <p><?php echo __("Please upgrade to the latest version to be able use the full functionality of the plugin.", "really-simple-ssl"); ?></p> </div> <?php } } public static function has_old_addon($file) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; $data = false; if (is_plugin_active($file)) { $data = get_plugin_data(trailingslashit(WP_PLUGIN_DIR) . $file, false, false); } if ($data && version_compare($data['Version'], '4.0.0', '<')) { return true; } if ($data && $data['Name'] === 'Really Simple SSL social' && version_compare($data['Version'], '4.0.8', '<')) { return true; } return false; } } function RSSSL() { return REALLY_SIMPLE_SSL::instance(); } add_action('plugins_loaded', 'RSSSL', 8);