| 1 |
<?php |
| 2 |
/** |
| 3 |
* Polylang |
| 4 |
* |
| 5 |
* @package Polylang |
| 6 |
* @author WP SYNTEX |
| 7 |
* @license GPL-3.0-or-later |
| 8 |
* |
| 9 |
* @wordpress-plugin |
| 10 |
* Plugin Name: Polylang |
| 11 |
* Plugin URI: https://polylang.pro |
| 12 |
* Description: Adds multilingual capability to WordPress |
| 13 |
* Version: 3.1.3 |
| 14 |
* Requires at least: 5.4 |
| 15 |
* Requires PHP: 5.6 |
| 16 |
* Author: WP SYNTEX |
| 17 |
* Author URI: https://polylang.pro |
| 18 |
* Text Domain: polylang |
| 19 |
* Domain Path: /languages |
| 20 |
* License: GPL v3 or later |
| 21 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt |
| 22 |
* |
| 23 |
* Copyright 2011-2019 Frédéric Demarle |
| 24 |
* Copyright 2019-2021 WP SYNTEX |
| 25 |
* |
| 26 |
* This program is free software: you can redistribute it and/or modify |
| 27 |
* it under the terms of the GNU General Public License as published by |
| 28 |
* the Free Software Foundation, either version 3 of the License, or |
| 29 |
* (at your option) any later version. |
| 30 |
* |
| 31 |
* This program is distributed in the hope that it will be useful, |
| 32 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 33 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 34 |
* GNU General Public License for more details. |
| 35 |
* |
| 36 |
* You should have received a copy of the GNU General Public License |
| 37 |
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 38 |
*/ |
| 39 |
|
| 40 |
if ( ! defined( 'ABSPATH' ) ) { |
| 41 |
exit; // Don't access directly. |
| 42 |
}; |
| 43 |
|
| 44 |
if ( defined( 'POLYLANG_VERSION' ) ) { |
| 45 |
// The user is attempting to activate a second plugin instance, typically Polylang and Polylang Pro. |
| 46 |
require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 47 |
require_once ABSPATH . 'wp-includes/pluggable.php'; |
| 48 |
if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) { |
| 49 |
deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate this plugin. |
| 50 |
// WP does not allow us to send a custom meaningful message, so just tell the plugin has been deactivated. |
| 51 |
wp_safe_redirect( add_query_arg( 'deactivate', 'true', remove_query_arg( 'activate' ) ) ); |
| 52 |
exit; |
| 53 |
} |
| 54 |
} else { |
| 55 |
// Go on loading the plugin |
| 56 |
define( 'POLYLANG_VERSION', '3.1.3' ); |
| 57 |
define( 'PLL_MIN_WP_VERSION', '5.4' ); |
| 58 |
define( 'PLL_MIN_PHP_VERSION', '5.6' ); |
| 59 |
|
| 60 |
define( 'POLYLANG_FILE', __FILE__ ); |
| 61 |
define( 'POLYLANG_DIR', __DIR__ ); |
| 62 |
|
| 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 |
} |
| 67 |
|
| 68 |
if ( ! defined( 'POLYLANG_BASENAME' ) ) { |
| 69 |
define( 'POLYLANG_BASENAME', plugin_basename( __FILE__ ) ); // Plugin name as known by WP. |
| 70 |
require __DIR__ . '/vendor/autoload.php'; |
| 71 |
} |
| 72 |
|
| 73 |
define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) ); |
| 74 |
|
| 75 |
if ( empty( $_GET['deactivate-polylang'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification |
| 76 |
new Polylang(); |
| 77 |
} |
| 78 |
} |
| 79 |
|