PluginProbe
Polylang / 3.7.2
Polylang v3.7.2
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / polylang.php

polylang.php in Polylang 3.7.2, at polylang.php

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