-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcustomize-widgets-plus.php
42 lines (41 loc) · 1.79 KB
/
customize-widgets-plus.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Plugin Name: Customize Widgets Plus
* Plugin URI: https://github.com/xwp/wp-customize-widgets-plus
* Description: Lab features and a testbed for improvements to Widgets and the Customizer.
* Version: 0.2
* Author: XWP, News Corp Australia
* Author URI: https://xwp.co/
* License: GPLv2+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: customize-widgets-plus
* Domain Path: /languages
*
* Copyright (c) 2015 XWP (https://xwp.co/)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
if ( version_compare( phpversion(), '5.3', '>=' ) ) {
require_once __DIR__ . '/instance.php';
} else {
function customize_widgets_plus_php_version_error() {
printf( '<div class="error"><p>%s</p></div>', esc_html__( 'Customize Widgets Plus plugin error: Your version of PHP is too old to run this plugin. You must be running PHP 5.3 or higher.', 'customize-widgets-plus' ) );
}
if ( defined( 'WP_CLI' ) ) {
WP_CLI::warning( __( 'Customize Widgets Plus plugin error: Your PHP version is too old. You must have 5.3 or higher.', 'customize-widgets-plus' ) );
} else {
add_action( 'admin_notices', 'customize_widgets_plus_php_version_error' );
}
}