-
Notifications
You must be signed in to change notification settings - Fork 1
/
tm-style-switcher.php
426 lines (355 loc) · 9.79 KB
/
tm-style-switcher.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<?php
/**
* Plugin Name: TM Style Switcher
* Plugin URI: https://wordpress.org/plugins/tm-style-switcher/
* Description: Plugin for WordPress.
* Version: 1.0.6
* Author: Jetimpex
* Author URI: https://jetimpex.com/wordpress/
* Text Domain: tm-style-switcher
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Domain Path: /languages
*
* @package Tm Style Switcher
* @author TemplateMonster
* @version 1.0.5
* @license GPL-3.0+
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die();
}
// If class `Tm_Style_Switcher` doesn't exists yet.
if ( ! class_exists( 'Tm_Style_Switcher' ) ) {
/**
* Sets up and initializes the Tm Style Switcher plugin.
*/
class Tm_Style_Switcher {
/**
* Presets list
*
* @since 1.0.0
* @var array
*/
public $preset_list = array();
/**
* A reference to an instance of this class.
*
* @since 1.0.0
* @var object
*/
private static $instance = null;
/**
* A reference to an instance of cherry framework core class.
*
* @since 1.0.0
* @var object
*/
private $core = null;
/**
* Sets up needed actions/filters for the plugin to initialize.
*
* @since 1.0.0
*/
public function __construct() {
// Set the constants needed by the plugin.
$this->constants();
// Load the functions files.
$this->includes();
// Load the installer core.
add_action( 'after_setup_theme', require( trailingslashit( dirname( __FILE__ ) ) . 'cherry-framework/setup.php' ), 0 );
// Load the core functions/classes required by the rest of the theme.
add_action( 'after_setup_theme', array( $this, 'get_core' ), 1 );
add_action( 'after_setup_theme', array( 'Cherry_Core', 'load_all_modules' ), 2 );
// Initialization of modules.
add_action( 'after_setup_theme', array( $this, 'init' ) );
// Internationalize the text strings used.
add_action( 'plugins_loaded', array( $this, 'lang' ), 2 );
// Load the admin files.
add_action( 'plugins_loaded', array( $this, 'admin_init' ), 3 );
// Load public-facing style sheet.
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) );
// Load public-facing JavaScript.
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
//add_action( 'customize_controls_print_scripts', 'CEI_Core::controls_print_scripts' );
add_action( 'customize_controls_enqueue_scripts', array( $this, 'controls_enqueue_scripts' ) );
// Register activation and deactivation hook.
register_activation_hook( __FILE__, array( $this, 'activation' ) );
register_deactivation_hook( __FILE__, array( $this, 'deactivation' ) );
// Switch theme
add_action( 'after_switch_theme', array( $this, 'switch_theme' ) );
}
/**
* Defines constants for the plugin.
*
* @since 1.0.0
*/
public function constants() {
/**
* Set the version number of the plugin.
*
* @since 1.0.0
*/
define( 'TM_STYLE_SWITCHER_VERSION', '1.0.6' );
/**
* Set the name of the plugin.
*
* @since 1.0.0
*/
define( 'TM_STYLE_SWITCHER_NAME', 'tm_style_switcher' );
/**
* Set constant path to the plugin directory.
*
* @since 1.0.0
*/
define( 'TM_STYLE_SWITCHER_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
/**
* Set constant path to the plugin URI.
*
* @since 1.0.0
*/
define( 'TM_STYLE_SWITCHER_URI', trailingslashit( plugin_dir_url( __FILE__ ) ) );
}
/**
* Loads files from the '/include' folder.
*
* @since 1.0.0
*/
function includes() {
require_once( trailingslashit( TM_STYLE_SWITCHER_DIR ) . 'includes/class-init-style-switcher.php' );
require_once( trailingslashit( TM_STYLE_SWITCHER_DIR ) . 'includes/class-register-customize-controls.php' );
}
/**
* Loads the core functions. These files are needed before loading anything else in the
* theme because they have required functions for use.
*
* @since 1.0.0
*/
public function get_core() {
/**
* Fires before loads the core theme functions.
*
* @since 1.0.0
*/
do_action( 'tm_style_swither_core_before' );
global $chery_core_version;
if ( null !== $this->core ) {
return $this->core;
}
if ( 0 < sizeof( $chery_core_version ) ) {
$core_paths = array_values( $chery_core_version );
require_once( $core_paths[0] );
} else {
die( 'Class Cherry_Core not found' );
}
$this->core = new Cherry_Core( array(
'modules' => array(
'cherry-toolkit' => array(
'autoload' => false,
),
'cherry-js-core' => array(
'autoload' => false,
),
'cherry-ui-elements' => array(
'autoload' => false,
),
'cherry-utility' => array(
'autoload' => true,
),
),
) );
return $this->core;
}
/**
* Run initialization of modules.
*
* @since 1.0.0
*/
public function init() {
$this->get_core()->init_module( 'cherry-js-core' );
}
/**
* Loads admin files.
*
* @since 1.0.0
*/
public function admin_init() {
}
/**
* Loads the translation files.
*
* @since 1.0.0
*/
public function lang() {
load_plugin_textdomain( 'tm-style-switcher', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Register and enqueue public-facing style sheet.
*
* @since 1.0.0
*/
public function enqueue_styles() {}
/**
* Register and enqueue public-facing style sheet.
*
* @since 1.0.0
*/
public function enqueue_scripts() {}
/**
* Enqueues scripts for the control.
*
* @since 0.1
* @return void
*/
public function controls_enqueue_scripts() {
// Register
wp_register_style( 'tm-style-swither-css', TM_STYLE_SWITCHER_URI . 'assets/css/min/styles.min.css', array(), TM_STYLE_SWITCHER_VERSION );
wp_register_script( 'tm-style-swither-js', TM_STYLE_SWITCHER_URI . 'assets/js/min/tm-style-switcher-script.min.js', array( 'jquery', 'cherry-js-core', 'jquery-ui-tooltip', 'jquery-ui-dialog' ), TM_STYLE_SWITCHER_VERSION, true );
// Localize
wp_localize_script( 'tm-style-swither-js', 'tmssMessages', array(
'emptyImportFile' => __( 'Please choose a file to import', 'tm-style-switcher' ),
'willBeRestored' => __( 'To apply the changes to the page will be reloaded', 'tm-style-switcher' ),
'downloadStarted' => __( 'File download started...', 'tm-style-switcher' ),
));
// Config
wp_localize_script( 'tm-style-swither-js', 'tmssConfig', array(
'customizerURL' => admin_url( 'customize.php' ),
'exportNonce' => wp_create_nonce( 'tmss-exporting' ),
));
// Enqueue
wp_enqueue_style( 'tm-style-swither-css' );
wp_enqueue_script( 'tm-style-swither-js' );
}
/**
* Get option field for default settings data
*
* @param string $theme Theme name
* @return string
*/
public function get_default_option_field_name( $theme ) {
return TM_STYLE_SWITCHER_NAME . '_' . $theme . '_defaults';
}
/**
* Create default settings
*
* @since 1.0.0
* @return void
*/
public function create_default_settings() {
$theme = get_stylesheet();
$option_field_name = $this->get_default_option_field_name( $theme );
if ( false === get_option( $option_field_name ) ) {
$mods = get_theme_mods();
$default_data = array(
'theme' => $theme,
'mods' => $mods ? $mods : array(),
);
update_option( $option_field_name, $default_data );
}
}
/**
* Register new preset
*
* @param string $id Preset id
* @param string $label Preset label
* @param string $image_url Preset image
* @param string $json_path Preset settings
*
* @since 1.0.0
* @return void
*/
public function tmss_register_preset( $id = '', $label = '', $image_url = '', $json_path = '' ) {
if ( array_key_exists( $id, $this->preset_list ) ) {
return false;
}
if ( ! file_exists( $json_path ) ) {
return false;
}
if ( empty( $image_url ) ) {
$image_url = $this->get_inherit_image();
}
$this->preset_list[ $id ] = array(
'label' => $label,
'image_url' => $image_url,
'json_path' => $json_path,
);
}
/**
* Get inherit image for preset preview.
*
* @since 1.0.0
*/
public function get_inherit_image() {
return trailingslashit( plugin_dir_url( __FILE__ ) ) . '/assets/images/inherit-image.svg';
}
/**
* Get inherit image for preset preview.
*
* @since 1.0.0
*/
public function get_default_image() {
return trailingslashit( plugin_dir_url( __FILE__ ) ) . '/assets/images/default-image.svg';
}
/**
* On plugin activation.
*
* @since 1.0.0
*/
public function activation() {
// Create default settings
$this->create_default_settings();
}
/**
* On plugin deactivation.
*
* @since 1.0.0
*/
public function deactivation() {}
/**
* On switch theme
*
* @since 1.0.0
*/
public function switch_theme() {
// Create default settings
$this->create_default_settings();
}
/**
* Returns the instance.
*
* @since 1.0.0
* @return object
*/
public static function get_instance() {
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
}
}
if ( ! function_exists( 'tm_style_switcher' ) ) {
/**
* Returns instanse of the plugin class.
*
* @since 1.0.0
* @return object
*/
function tm_style_switcher() {
return Tm_Style_Switcher::get_instance();
}
}
if ( ! function_exists( 'tmss_register_preset' ) ) {
/**
* Returns instanse of the plugin class.
*
* @since 1.0.0
* @return object
*/
function tmss_register_preset( $id = '', $label = '', $image_url = '', $json_path = '' ) {
return tm_style_switcher()->tmss_register_preset( $id, $label, $image_url, $json_path );
}
}
tm_style_switcher();