Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-content/plugins/ssl-zen/ssl_zen/classes/class.ssl_zen.php
Назад
<?php /** * Helps install a free SSL certificate from LetsEncrypt, fixes mixed content, insecure content by redirecting to https, and forces SSL on all pages. * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * Plugin Name: Free SSL Certificate & HTTPS Redirector for WordPress - SSL Zen * Plugin URI: https://sslzen.com * Description: Helps install a free SSL certificate from LetsEncrypt, fixes mixed content, insecure content by redirecting to https, and forces SSL on all pages. * Version: 1.9.6 * Author: SSL * Author URI: http://sslzen.com * License: GNU General Public License v3.0 * License URI: http://www.gnu.org/licenses/gpl-3.0.html * Text Domain: ssl-zen * Domain Path: ssl_zen/languages * * @author SSL * @category Plugin * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0 */ if ( !class_exists( 'ssl_zen' ) ) { /** * Base class of the plugin */ class ssl_zen { /** * @var ssl_zen the single instance of the class * @since 1.0 */ protected static $instance = null; /** * Instantiates the plugin and include all the files needed for the plugin. */ function __construct() { self::include_plugin_files(); self::check_update(); } /** * Main SSL Zen Plugin instance * * Ensures only one instance of SSL Zen is loaded or can be loaded. * * @return ssl_zen * @since 1.0 * @static */ public static function instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } /** * Include all the files needed for the plugin. */ private static function include_plugin_files() { // Include SSL Zen Steps include_once SSL_ZEN_DIR . 'classes/steps/pricing.php'; include_once SSL_ZEN_DIR . 'classes/steps/settings.php'; // Include necessary classes include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_cpanel.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_domainconnect.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_cloudflare_fix.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_certificate.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_admin.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_helper.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_messages.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_scripts.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_https.php'; include_once SSL_ZEN_DIR . 'classes/class.ssl_zen_scheduled.php'; include_once SSL_ZEN_DIR . 'lib/LEFunctions.php'; include_once SSL_ZEN_DIR . 'lib/LEConnector.php'; include_once SSL_ZEN_DIR . 'lib/LEAccount.php'; include_once SSL_ZEN_DIR . 'lib/LEAuthorization.php'; include_once SSL_ZEN_DIR . 'lib/LEClient.php'; include_once SSL_ZEN_DIR . 'lib/LEOrder.php'; // Step 1 for cPanel Free & Paid are same, requires LogMeIn include_once SSL_ZEN_DIR . 'lib/cPanel/cPanel.php'; } /** * Check if current plugin version is higher then 1.6.1 (for including both PRO and FREE) , then we need to proceed couple actions. * Rename all htaccess related file names to correct htaccess name * * @since 1.9.5 */ private static function check_update() { if ( version_compare( '1.6', SSL_ZEN_PLUGIN_VERSION ) == -1 ) { if ( file_exists( SSL_ZEN_DIR . 'keys/keys.htaccess' ) ) { // rename it @rename( SSL_ZEN_DIR . 'keys/keys.htaccess', SSL_ZEN_DIR . 'keys/.htaccess' ); } if ( file_exists( SSL_ZEN_DIR . 'keys/__account.htaccess' ) ) { // rename it @rename( SSL_ZEN_DIR . 'keys/__account.htaccess', SSL_ZEN_DIR . 'keys/.htaccess' ); } if ( file_exists( SSL_ZEN_DIR . 'keys/__account/__account.htaccess' ) ) { // rename it @rename( SSL_ZEN_DIR . 'keys/__account/__account.htaccess', SSL_ZEN_DIR . 'keys/__account/.htaccess' ); } } } } }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка