PluginProbe
Polylang / 2.8
Polylang v2.8
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
← All changes | polylang.php +37 -46 2.7.22.8 View file →
@@ -1,22 +1,26 @@
1 1 <?php
2 -
3 2 /**
4 - * Plugin Name: Polylang
5 - * Plugin URI: https://polylang.pro
6 - * Description: Adds multilingual capability to WordPress
7 - * Version: 2.7.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: 2.8
8 14 * Requires at least: 4.9
9 - * Requires PHP: 5.6
10 - * Author: WP SYNTEX
11 - * Author uri: https://polylang.pro
12 - * License: GPL v3 or later
13 - * License URI: https://www.gnu.org/licenses/gpl-3.0.html
14 - * Text Domain: polylang
15 - * Domain Path: /languages
16 - */
17 -
18 -/*
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 + *
19 23 * Copyright 2011-2019 Frédéric Demarle
20 24 * Copyright 2019-2020 WP SYNTEX
21 25 *
22 26 * This program is free software: you can redistribute it and/or modify
@@ -33,49 +37,36 @@
33 37 * along with this program. If not, see <https://www.gnu.org/licenses/>.
34 38 */
35 39
36 40 if ( ! defined( 'ABSPATH' ) ) {
37 - exit; // don't access directly
41 + exit; // Don't access directly.
38 42 };
39 43
40 -if ( defined( 'POLYLANG_BASENAME' ) ) {
41 - // The user is attempting to activate a second plugin instance, typically Polylang and Polylang Pro
44 +if ( defined( 'POLYLANG_VERSION' ) ) {
45 + // The user is attempting to activate a second plugin instance, typically Polylang and Polylang Pro.
42 46 require_once ABSPATH . 'wp-admin/includes/plugin.php';
43 - if ( defined( 'POLYLANG_PRO' ) ) {
44 - // Polylang Pro is already activated
45 - if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
46 - require_once ABSPATH . 'wp-includes/pluggable.php';
47 - deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate this plugin
48 - // WP does not allow us to send a custom meaningful message, so just tell the plugin has been deactivated
49 - wp_safe_redirect( add_query_arg( 'deactivate', 'true', remove_query_arg( 'activate' ) ) );
50 - exit;
51 - }
52 - } else {
53 - // Polylang was activated, deactivate it to keep only what we expect to be Polylang Pro
54 - deactivate_plugins( POLYLANG_BASENAME );
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;
55 53 }
56 54 } else {
57 55 // Go on loading the plugin
58 - define( 'POLYLANG_VERSION', '2.7.2' );
56 + define( 'POLYLANG_VERSION', '2.8' );
59 57 define( 'PLL_MIN_WP_VERSION', '4.9' );
60 58 define( 'PLL_MIN_PHP_VERSION', '5.6' );
61 59
62 - define( 'POLYLANG_FILE', __FILE__ ); // this file
63 - define( 'POLYLANG_BASENAME', plugin_basename( POLYLANG_FILE ) ); // plugin name as known by WP
64 - define( 'POLYLANG_DIR', dirname( POLYLANG_FILE ) ); // our directory
65 - define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) );
60 + define( 'POLYLANG_FILE', __FILE__ );
61 + define( 'POLYLANG_DIR', __DIR__ );
66 62
67 - define( 'PLL_ADMIN_INC', POLYLANG_DIR . '/admin' );
68 - define( 'PLL_FRONT_INC', POLYLANG_DIR . '/frontend' );
69 - define( 'PLL_INC', POLYLANG_DIR . '/include' );
70 - define( 'PLL_INSTALL_INC', POLYLANG_DIR . '/install' );
71 - define( 'PLL_MODULES_INC', POLYLANG_DIR . '/modules' );
72 - define( 'PLL_SETTINGS_INC', POLYLANG_DIR . '/settings' );
73 - define( 'PLL_PREFIX', 'pll_' );
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 + }
74 67
75 - if ( file_exists( PLL_MODULES_INC . '/pro.php' ) ) {
76 - define( 'POLYLANG_PRO', true );
77 - }
68 + define( 'POLYLANG', ucwords( str_replace( '-', ' ', dirname( POLYLANG_BASENAME ) ) ) );
78 69
79 - require_once PLL_INC . '/class-polylang.php';
70 + require __DIR__ . '/include/class-polylang.php';
80 71 new Polylang();
81 72 }