PluginProbe
Customify / 2.3.3
Customify v2.3.3
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
← All changes | customify.php +9 -8 1.7.12.3.3 View file →
@@ -2,9 +2,9 @@
2 2 /*
3 3 Plugin Name: Customify
4 4 Plugin URI: https://wordpress.org/plugins/customify/
5 5 Description: A Theme Customizer Booster
6 -Version: 1.7.1
6 +Version: 2.3.3
7 7 Author: Pixelgrade
8 8 Author URI: https://pixelgrade.com
9 9 Author Email: contact@pixelgrade.com
10 10 Text Domain: customify
@@ -10,8 +10,10 @@
10 10 Text Domain: customify
11 11 License: GPL-2.0+
12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.txt
13 13 Domain Path: /languages/
14 +Requires at least: 4.9
15 +Tested up to: 5.0.2
14 16 */
15 17
16 18 // If this file is called directly, abort.
17 19 if ( ! defined( 'ABSPATH' ) ) {
@@ -22,14 +24,14 @@
22 24 if ( ! defined('EXT')) {
23 25 define('EXT', '.php');
24 26 }
25 27
26 -require 'core/bootstrap' . EXT;
28 +require 'core/bootstrap.php';
27 29
28 30 // Include our helper array class.
29 -require 'includes/class-customify-array' . EXT;
31 +require 'includes/lib/class-customify-array.php';
30 32
31 -$config = include 'plugin-config' . EXT;
33 +$config = include 'plugin-config.php';
32 34
33 35 // set textdomain
34 36 pixcustomify::settextdomain( 'customify' );
35 37
@@ -35,9 +37,9 @@
35 37
36 38 // Ensure Test Data
37 39 // ----------------
38 40
39 -$defaults = include 'plugin-defaults'.EXT;
41 +$defaults = include 'plugin-defaults.php';
40 42
41 43 $current_data = get_option( $config['settings-key'] );
42 44
43 45 if ( $current_data === false ) {
@@ -58,11 +60,11 @@
58 60 /**
59 61 * The core plugin class that is used to define internationalization,
60 62 * admin-specific hooks, and public-facing site hooks.
61 63 */
62 - require_once( plugin_dir_path( __FILE__ ) . 'class-pixcustomify.php' );
64 + require_once plugin_dir_path( __FILE__ ) . 'class-pixcustomify.php';
63 65
64 - $instance = PixCustomifyPlugin::instance( __FILE__, '1.7.0' );
66 + $instance = PixCustomifyPlugin::instance( __FILE__, '2.3.3' );
65 67
66 68 return $instance;
67 69 }
68 70
@@ -70,6 +72,5 @@
70 72 // We will keep this global variable for legacy
71 73 $pixcustomify_plugin = PixCustomifyPlugin();
72 74
73 75 // Load custom modules
74 -require_once( 'features/class-CSS_Editor.php' );
75 76 require_once( 'features/class-Font_Selector.php' );