| @@ -9,20 +9,19 @@ | ||
| 9 | 9 | * @wordpress-plugin |
| 10 | 10 | * Plugin Name: Polylang |
| 11 | 11 | * Plugin URI: https://polylang.pro |
| 12 | 12 | * Description: Adds multilingual capability to WordPress |
| 13 | - * Version: 2.9 | |
| 14 | - * Requires at least: 5.1 | |
| 15 | - * Requires PHP: 5.6 | |
| 13 | + * Version: 3.8 | |
| 14 | + * Requires at least: 6.5 | |
| 15 | + * Requires PHP: 7.4 | |
| 16 | 16 | * Author: WP SYNTEX |
| 17 | 17 | * Author URI: https://polylang.pro |
| 18 | 18 | * Text Domain: polylang |
| 19 | - * Domain Path: /languages | |
| 20 | 19 | * License: GPL v3 or later |
| 21 | 20 | * License URI: https://www.gnu.org/licenses/gpl-3.0.txt |
| 22 | 21 | * |
| 23 | 22 | * Copyright 2011-2019 Frédéric Demarle |
| 24 | - * Copyright 2019-2020 WP SYNTEX | |
| 23 | + * Copyright 2019-2026 WP SYNTEX | |
| 25 | 24 | * |
| 26 | 25 | * This program is free software: you can redistribute it and/or modify |
| 27 | 26 | * it under the terms of the GNU General Public License as published by |
| 28 | 27 | * the Free Software Foundation, either version 3 of the License, or |
| @@ -36,16 +35,15 @@ | ||
| 36 | 35 | * You should have received a copy of the GNU General Public License |
| 37 | 36 | * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 38 | 37 | */ |
| 39 | 38 | |
| 40 | -if ( ! defined( 'ABSPATH' ) ) { | |
| 41 | - exit; // Don't access directly. | |
| 42 | -}; | |
| 39 | +defined( 'ABSPATH' ) || exit; | |
| 43 | 40 | |
| 44 | 41 | if ( defined( 'POLYLANG_VERSION' ) ) { |
| 45 | 42 | // The user is attempting to activate a second plugin instance, typically Polylang and Polylang Pro. |
| 46 | 43 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 47 | 44 | require_once ABSPATH . 'wp-includes/pluggable.php'; |
| 45 | + | |
| 48 | 46 | if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) { |
| 49 | 47 | deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate this plugin. |
| 50 | 48 | // WP does not allow us to send a custom meaningful message, so just tell the plugin has been deactivated. |
| 51 | 49 | wp_safe_redirect( add_query_arg( 'deactivate', 'true', remove_query_arg( 'activate' ) ) ); |
| @@ -50,24 +48,47 @@ | ||
| 50 | 48 | // WP does not allow us to send a custom meaningful message, so just tell the plugin has been deactivated. |
| 51 | 49 | wp_safe_redirect( add_query_arg( 'deactivate', 'true', remove_query_arg( 'activate' ) ) ); |
| 52 | 50 | exit; |
| 53 | 51 | } |
| 54 | -} else { | |
| 55 | - // Go on loading the plugin | |
| 56 | - define( 'POLYLANG_VERSION', '2.9' ); | |
| 57 | - define( 'PLL_MIN_WP_VERSION', '5.1' ); | |
| 58 | - define( 'PLL_MIN_PHP_VERSION', '5.6' ); | |
| 52 | + return; | |
| 53 | +} | |
| 59 | 54 | |
| 60 | - define( 'POLYLANG_FILE', __FILE__ ); | |
| 61 | - define( 'POLYLANG_DIR', __DIR__ ); | |
| 55 | +// Go on loading the plugin. | |
| 56 | +define( 'POLYLANG_VERSION', '3.8' ); | |
| 57 | +define( 'PLL_MIN_WP_VERSION', '6.5' ); | |
| 58 | +define( 'PLL_MIN_PHP_VERSION', '7.4' ); | |
| 62 | 59 | |
| 63 | - if ( ! defined( 'POLYLANG_BASENAME' ) ) { | |
| 64 | - define( 'POLYLANG_BASENAME', plugin_basename( __FILE__ ) ); // Plugin name as known by WP. | |
| 65 | - require __DIR__ . '/vendor/autoload.php'; | |
| 66 | - } | |
| 60 | +define( 'POLYLANG_FILE', __FILE__ ); | |
| 61 | +define( 'POLYLANG_DIR', __DIR__ ); | |
| 67 | 62 | |
| 68 | - define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) ); | |
| 63 | +// Whether we are using Polylang or Polylang Pro, get the filename of the plugin in use. | |
| 64 | +if ( ! defined( 'POLYLANG_ROOT_FILE' ) ) { | |
| 65 | + define( 'POLYLANG_ROOT_FILE', __FILE__ ); | |
| 66 | +} | |
| 69 | 67 | |
| 70 | - if ( empty( $_GET['deactivate-polylang'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification | |
| 71 | - new Polylang(); | |
| 72 | - } | |
| 68 | +if ( ! defined( 'POLYLANG_BASENAME' ) ) { | |
| 69 | + define( 'POLYLANG_BASENAME', plugin_basename( __FILE__ ) ); // Plugin name as known by WP. | |
| 70 | + require __DIR__ . '/vendor/autoload.php'; | |
| 73 | 71 | } |
| 72 | + | |
| 73 | +define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) ); | |
| 74 | + | |
| 75 | +if ( ! empty( $_GET['deactivate-polylang'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification | |
| 76 | + return; | |
| 77 | +} | |
| 78 | + | |
| 79 | +require POLYLANG_DIR . '/src/constant-functions.php'; | |
| 80 | +if ( ! PLL_Usable::can_activate() ) { | |
| 81 | + // WP version or php version is too old. | |
| 82 | + return; | |
| 83 | +} | |
| 84 | + | |
| 85 | +define( 'POLYLANG_ACTIVE', true ); | |
| 86 | + | |
| 87 | +if ( PLL_Deactivate::is_deactivation() ) { | |
| 88 | + // Stopping here if we are going to deactivate the plugin (avoids breaking rewrite rules). | |
| 89 | + PLL_Deactivate::add_hooks(); | |
| 90 | + return; | |
| 91 | +} | |
| 92 | + | |
| 93 | +PLL_Activate::add_hooks(); | |
| 94 | +new Polylang(); | |