PluginProbe
Polylang / trunk
Polylang vtrunk
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 trunk, at polylang.php

108 lines 3.4 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.9-beta1
14 * Requires at least: 6.8
15 * Requires PHP: 7.4
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-2026 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 defined( 'ABSPATH' ) || exit;
40
41 if ( defined( 'POLYLANG_VERSION' ) ) {
42 // The user is attempting to activate a second plugin instance, typically Polylang and Polylang Pro.
43 require_once ABSPATH . 'wp-admin/includes/plugin.php';
44
45 if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
46 deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate this plugin.
47
48 add_action(
49 'load-plugins.php',
50 static function () {
51 unset( $_GET['activate'] ); // Prevent WP to display its 'Plugin activated.' message.
52 $updated_notice_args = array(
53 'type' => 'error',
54 'dismissible' => true,
55 );
56 wp_admin_notice( __( 'Polylang hasn\'t been activated: Polylang and Polylang Pro cannot be activated at the same time.', 'polylang' ), $updated_notice_args );
57 }
58 );
59 }
60 return;
61 }
62
63 // Go on loading the plugin.
64 define( 'POLYLANG_VERSION', '3.9-beta1' );
65 define( 'PLL_MIN_WP_VERSION', '6.8' );
66 define( 'PLL_MIN_PHP_VERSION', '7.4' );
67
68 define( 'POLYLANG_FILE', __FILE__ );
69 define( 'POLYLANG_DIR', __DIR__ );
70
71 // The filename of the plugin in use, whether it is Polylang or Polylang Pro.
72 if ( ! defined( 'POLYLANG_ROOT_FILE' ) ) {
73 define( 'POLYLANG_ROOT_FILE', __FILE__ );
74 }
75
76 // The root directory of the plugin in use, whether it is Polylang or Polylang Pro.
77 if ( ! defined( 'POLYLANG_ROOT_DIR' ) ) {
78 define( 'POLYLANG_ROOT_DIR', __DIR__ );
79 }
80
81 if ( ! defined( 'POLYLANG_BASENAME' ) ) {
82 define( 'POLYLANG_BASENAME', plugin_basename( __FILE__ ) ); // Plugin name as known by WP.
83 require __DIR__ . '/vendor/autoload.php';
84 }
85
86 define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) );
87
88 if ( ! empty( $_GET['deactivate-polylang'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
89 return;
90 }
91
92 require POLYLANG_DIR . '/src/constant-functions.php';
93 if ( ! PLL_Usable::can_activate() ) {
94 // WP version or php version is too old.
95 return;
96 }
97
98 define( 'POLYLANG_ACTIVE', true );
99
100 if ( PLL_Deactivate::is_deactivation() ) {
101 // Stopping here if we are going to deactivate the plugin (avoids breaking rewrite rules).
102 PLL_Deactivate::add_hooks();
103 return;
104 }
105
106 PLL_Activate::add_hooks();
107 new Polylang();
108