1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* A class for adjusting AyeCode UI settings on WordPress |
4
|
|
|
* |
5
|
|
|
* This class can be added to any plugin or theme and will add a settings screen to WordPress to control Bootstrap settings. |
6
|
|
|
* |
7
|
|
|
* @link https://github.com/AyeCode/wp-ayecode-ui |
8
|
|
|
* |
9
|
|
|
* @internal This file should not be edited directly but pulled from the github repo above. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* Bail if we are not in WP. |
14
|
|
|
*/ |
15
|
|
|
if ( ! defined( 'ABSPATH' ) ) { |
16
|
|
|
exit; |
17
|
|
|
} |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* Only add if the class does not already exist. |
21
|
|
|
*/ |
22
|
|
|
if ( ! class_exists( 'AyeCode_UI_Settings' ) ) { |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* A Class to be able to change settings for Font Awesome. |
26
|
|
|
* |
27
|
|
|
* Class AyeCode_UI_Settings |
28
|
|
|
* @ver 1.0.0 |
29
|
|
|
* @todo decide how to implement textdomain |
30
|
|
|
*/ |
31
|
|
|
class AyeCode_UI_Settings { |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* Class version version. |
35
|
|
|
* |
36
|
|
|
* @var string |
37
|
|
|
*/ |
38
|
|
|
public $version = '0.1.89'; |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* Class textdomain. |
42
|
|
|
* |
43
|
|
|
* @var string |
44
|
|
|
*/ |
45
|
|
|
public $textdomain = 'aui'; |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* Latest version of Bootstrap at time of publish published. |
49
|
|
|
* |
50
|
|
|
* @var string |
51
|
|
|
*/ |
52
|
|
|
public $latest = "5.2.2"; |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* Current version of select2 being used. |
56
|
|
|
* |
57
|
|
|
* @var string |
58
|
|
|
*/ |
59
|
|
|
public $select2_version = "4.0.11"; |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* The title. |
63
|
|
|
* |
64
|
|
|
* @var string |
65
|
|
|
*/ |
66
|
|
|
public $name = 'AyeCode UI'; |
67
|
|
|
|
68
|
|
|
/** |
69
|
|
|
* The relative url to the assets. |
70
|
|
|
* |
71
|
|
|
* @var string |
72
|
|
|
*/ |
73
|
|
|
public $url = ''; |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* Holds the settings values. |
77
|
|
|
* |
78
|
|
|
* @var array |
79
|
|
|
*/ |
80
|
|
|
private $settings; |
81
|
|
|
|
82
|
|
|
/** |
83
|
|
|
* AyeCode_UI_Settings instance. |
84
|
|
|
* |
85
|
|
|
* @access private |
86
|
|
|
* @since 1.0.0 |
87
|
|
|
* @var AyeCode_UI_Settings There can be only one! |
88
|
|
|
*/ |
89
|
|
|
private static $instance = null; |
90
|
|
|
|
91
|
|
|
|
92
|
|
|
/** |
93
|
|
|
* Main AyeCode_UI_Settings Instance. |
94
|
|
|
* |
95
|
|
|
* Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
96
|
|
|
* |
97
|
|
|
* @since 1.0.0 |
98
|
|
|
* @static |
99
|
|
|
* @return AyeCode_UI_Settings - Main instance. |
100
|
|
|
*/ |
101
|
|
|
public static function instance() { |
102
|
|
|
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
103
|
|
|
|
104
|
|
|
self::$instance = new AyeCode_UI_Settings; |
105
|
|
|
|
106
|
|
|
add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
107
|
|
|
|
108
|
|
|
if ( is_admin() ) { |
109
|
|
|
add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
110
|
|
|
add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
111
|
|
|
|
112
|
|
|
// Maybe show example page |
113
|
|
|
add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
114
|
|
|
|
115
|
|
|
if ( defined( 'BLOCKSTRAP_VERSION' ) ) { |
116
|
|
|
add_filter( 'sd_aui_colors', array( self::$instance,'sd_aui_colors' ), 10, 3 ); |
117
|
|
|
} |
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
121
|
|
|
|
122
|
|
|
do_action( 'ayecode_ui_settings_loaded' ); |
123
|
|
|
} |
124
|
|
|
|
125
|
|
|
return self::$instance; |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
/** |
129
|
|
|
* Add custom colors to the color selector. |
130
|
|
|
* |
131
|
|
|
* @param $theme_colors |
132
|
|
|
* @param $include_outlines |
133
|
|
|
* @param $include_branding |
134
|
|
|
* |
135
|
|
|
* @return mixed |
136
|
|
|
*/ |
137
|
|
|
public function sd_aui_colors( $theme_colors, $include_outlines, $include_branding ){ |
|
|
|
|
138
|
|
|
|
139
|
|
|
|
140
|
|
|
$setting = wp_get_global_settings(); |
141
|
|
|
|
142
|
|
|
if(!empty($setting['color']['palette']['custom'])){ |
143
|
|
|
foreach($setting['color']['palette']['custom'] as $color){ |
144
|
|
|
$theme_colors[$color['slug']] = esc_attr($color['name']); |
145
|
|
|
} |
146
|
|
|
} |
147
|
|
|
|
148
|
|
|
return $theme_colors; |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
/** |
152
|
|
|
* Setup some constants. |
153
|
|
|
*/ |
154
|
|
|
public function constants(){ |
155
|
|
|
define( 'AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be" ); |
156
|
|
|
define( 'AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d' ); |
157
|
|
|
define( 'AUI_INFO_COLOR_ORIGINAL', '#17a2b8' ); |
158
|
|
|
define( 'AUI_WARNING_COLOR_ORIGINAL', '#ffc107' ); |
159
|
|
|
define( 'AUI_DANGER_COLOR_ORIGINAL', '#dc3545' ); |
160
|
|
|
define( 'AUI_SUCCESS_COLOR_ORIGINAL', '#44c553' ); |
161
|
|
|
define( 'AUI_LIGHT_COLOR_ORIGINAL', '#f8f9fa' ); |
162
|
|
|
define( 'AUI_DARK_COLOR_ORIGINAL', '#343a40' ); |
163
|
|
|
define( 'AUI_WHITE_COLOR_ORIGINAL', '#fff' ); |
164
|
|
|
define( 'AUI_PURPLE_COLOR_ORIGINAL', '#ad6edd' ); |
165
|
|
|
define( 'AUI_SALMON_COLOR_ORIGINAL', '#ff977a' ); |
166
|
|
|
define( 'AUI_CYAN_COLOR_ORIGINAL', '#35bdff' ); |
167
|
|
|
define( 'AUI_GRAY_COLOR_ORIGINAL', '#ced4da' ); |
168
|
|
|
define( 'AUI_INDIGO_COLOR_ORIGINAL', '#502c6c' ); |
169
|
|
|
define( 'AUI_ORANGE_COLOR_ORIGINAL', '#orange' ); |
170
|
|
|
define( 'AUI_BLACK_COLOR_ORIGINAL', '#000' ); |
171
|
|
|
|
172
|
|
|
if ( ! defined( 'AUI_PRIMARY_COLOR' ) ) { |
173
|
|
|
define( 'AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL ); |
174
|
|
|
} |
175
|
|
|
if ( ! defined( 'AUI_SECONDARY_COLOR' ) ) { |
176
|
|
|
define( 'AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL ); |
177
|
|
|
} |
178
|
|
|
if ( ! defined( 'AUI_INFO_COLOR' ) ) { |
179
|
|
|
define( 'AUI_INFO_COLOR', AUI_INFO_COLOR_ORIGINAL ); |
180
|
|
|
} |
181
|
|
|
if ( ! defined( 'AUI_WARNING_COLOR' ) ) { |
182
|
|
|
define( 'AUI_WARNING_COLOR', AUI_WARNING_COLOR_ORIGINAL ); |
183
|
|
|
} |
184
|
|
|
if ( ! defined( 'AUI_DANGER_COLOR' ) ) { |
185
|
|
|
define( 'AUI_DANGER_COLOR', AUI_DANGER_COLOR_ORIGINAL ); |
186
|
|
|
} |
187
|
|
|
if ( ! defined( 'AUI_SUCCESS_COLOR' ) ) { |
188
|
|
|
define( 'AUI_SUCCESS_COLOR', AUI_SUCCESS_COLOR_ORIGINAL ); |
189
|
|
|
} |
190
|
|
|
if ( ! defined( 'AUI_LIGHT_COLOR' ) ) { |
191
|
|
|
define( 'AUI_LIGHT_COLOR', AUI_LIGHT_COLOR_ORIGINAL ); |
192
|
|
|
} |
193
|
|
|
if ( ! defined( 'AUI_DARK_COLOR' ) ) { |
194
|
|
|
define( 'AUI_DARK_COLOR', AUI_DARK_COLOR_ORIGINAL ); |
195
|
|
|
} |
196
|
|
|
if ( ! defined( 'AUI_WHITE_COLOR' ) ) { |
197
|
|
|
define( 'AUI_WHITE_COLOR', AUI_WHITE_COLOR_ORIGINAL ); |
198
|
|
|
} |
199
|
|
|
if ( ! defined( 'AUI_PURPLE_COLOR' ) ) { |
200
|
|
|
define( 'AUI_PURPLE_COLOR', AUI_PURPLE_COLOR_ORIGINAL ); |
201
|
|
|
} |
202
|
|
|
if ( ! defined( 'AUI_SALMON_COLOR' ) ) { |
203
|
|
|
define( 'AUI_SALMON_COLOR', AUI_SALMON_COLOR_ORIGINAL ); |
204
|
|
|
} |
205
|
|
|
if ( ! defined( 'AUI_CYAN_COLOR' ) ) { |
206
|
|
|
define( 'AUI_CYAN_COLOR', AUI_CYAN_COLOR_ORIGINAL ); |
207
|
|
|
} |
208
|
|
|
if ( ! defined( 'AUI_GRAY_COLOR' ) ) { |
209
|
|
|
define( 'AUI_GRAY_COLOR', AUI_GRAY_COLOR_ORIGINAL ); |
210
|
|
|
} |
211
|
|
|
if ( ! defined( 'AUI_INDIGO_COLOR' ) ) { |
212
|
|
|
define( 'AUI_INDIGO_COLOR', AUI_INDIGO_COLOR_ORIGINAL ); |
213
|
|
|
} |
214
|
|
|
if ( ! defined( 'AUI_ORANGE_COLOR' ) ) { |
215
|
|
|
define( 'AUI_ORANGE_COLOR', AUI_ORANGE_COLOR_ORIGINAL ); |
216
|
|
|
} |
217
|
|
|
if ( ! defined( 'AUI_BLACK_COLOR' ) ) { |
218
|
|
|
define( 'AUI_BLACK_COLOR', AUI_BLACK_COLOR_ORIGINAL ); |
219
|
|
|
} |
220
|
|
|
|
221
|
|
|
} |
222
|
|
|
|
223
|
|
|
public static function get_colors( $original = false){ |
224
|
|
|
|
225
|
|
|
if ( ! defined( 'AUI_PRIMARY_COLOR' ) ) { |
226
|
|
|
return array(); |
227
|
|
|
} |
228
|
|
|
if ( $original ) { |
229
|
|
|
return array( |
230
|
|
|
'primary' => AUI_PRIMARY_COLOR_ORIGINAL, |
231
|
|
|
'secondary' => AUI_SECONDARY_COLOR_ORIGINAL, |
232
|
|
|
'info' => AUI_INFO_COLOR_ORIGINAL, |
233
|
|
|
'warning' => AUI_WARNING_COLOR_ORIGINAL, |
234
|
|
|
'danger' => AUI_DANGER_COLOR_ORIGINAL, |
235
|
|
|
'success' => AUI_SUCCESS_COLOR_ORIGINAL, |
236
|
|
|
'light' => AUI_LIGHT_COLOR_ORIGINAL, |
237
|
|
|
'dark' => AUI_DARK_COLOR_ORIGINAL, |
238
|
|
|
'white' => AUI_WHITE_COLOR_ORIGINAL, |
239
|
|
|
'purple' => AUI_PURPLE_COLOR_ORIGINAL, |
240
|
|
|
'salmon' => AUI_SALMON_COLOR_ORIGINAL, |
241
|
|
|
'cyan' => AUI_CYAN_COLOR_ORIGINAL, |
242
|
|
|
'gray' => AUI_GRAY_COLOR_ORIGINAL, |
243
|
|
|
'indigo' => AUI_INDIGO_COLOR_ORIGINAL, |
244
|
|
|
'orange' => AUI_ORANGE_COLOR_ORIGINAL, |
245
|
|
|
'black' => AUI_BLACK_COLOR_ORIGINAL, |
246
|
|
|
); |
247
|
|
|
} |
248
|
|
|
|
249
|
|
|
return array( |
250
|
|
|
'primary' => AUI_PRIMARY_COLOR, |
251
|
|
|
'secondary' => AUI_SECONDARY_COLOR, |
252
|
|
|
'info' => AUI_INFO_COLOR, |
253
|
|
|
'warning' => AUI_WARNING_COLOR, |
254
|
|
|
'danger' => AUI_DANGER_COLOR, |
255
|
|
|
'success' => AUI_SUCCESS_COLOR, |
256
|
|
|
'light' => AUI_LIGHT_COLOR, |
257
|
|
|
'dark' => AUI_DARK_COLOR, |
258
|
|
|
'white' => AUI_WHITE_COLOR, |
259
|
|
|
'purple' => AUI_PURPLE_COLOR, |
260
|
|
|
'salmon' => AUI_SALMON_COLOR, |
261
|
|
|
'cyan' => AUI_CYAN_COLOR, |
262
|
|
|
'gray' => AUI_GRAY_COLOR, |
263
|
|
|
'indigo' => AUI_INDIGO_COLOR, |
264
|
|
|
'orange' => AUI_ORANGE_COLOR, |
265
|
|
|
'black' => AUI_BLACK_COLOR, |
266
|
|
|
); |
267
|
|
|
} |
268
|
|
|
|
269
|
|
|
/** |
270
|
|
|
* Add admin body class to show when BS5 is active. |
271
|
|
|
* |
272
|
|
|
* @param $classes |
273
|
|
|
* |
274
|
|
|
* @return mixed |
275
|
|
|
*/ |
276
|
|
|
public function add_bs5_admin_body_class( $classes = '' ) { |
277
|
|
|
$classes .= ' aui_bs5'; |
278
|
|
|
|
279
|
|
|
return $classes; |
280
|
|
|
} |
281
|
|
|
|
282
|
|
|
/** |
283
|
|
|
* Add a body class to show when BS5 is active. |
284
|
|
|
* |
285
|
|
|
* @param $classes |
286
|
|
|
* |
287
|
|
|
* @return mixed |
288
|
|
|
*/ |
289
|
|
|
public function add_bs5_body_class( $classes ) { |
290
|
|
|
$classes[] = 'aui_bs5'; |
291
|
|
|
|
292
|
|
|
return $classes; |
293
|
|
|
} |
294
|
|
|
|
295
|
|
|
/** |
296
|
|
|
* Initiate the settings and add the required action hooks. |
297
|
|
|
*/ |
298
|
|
|
public function init() { |
299
|
|
|
global $aui_bs5; |
300
|
|
|
|
301
|
|
|
// Maybe fix settings |
302
|
|
|
if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) { |
303
|
|
|
$db_settings = get_option( 'ayecode-ui-settings' ); |
304
|
|
|
if ( ! empty( $db_settings ) ) { |
305
|
|
|
$db_settings['css_backend'] = 'compatibility'; |
306
|
|
|
$db_settings['js_backend'] = 'core-popper'; |
307
|
|
|
update_option( 'ayecode-ui-settings', $db_settings ); |
308
|
|
|
wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true")); |
309
|
|
|
} |
310
|
|
|
} |
311
|
|
|
|
312
|
|
|
$this->constants(); |
313
|
|
|
$this->settings = $this->get_settings(); |
314
|
|
|
$this->url = $this->get_url(); |
315
|
|
|
|
316
|
|
|
// define the version |
317
|
|
|
$aui_bs5 = $this->settings['bs_ver'] === '5'; |
318
|
|
|
|
319
|
|
|
if ( $aui_bs5 ) { |
320
|
|
|
include_once( dirname( __FILE__ ) . '/inc/bs-conversion.php' ); |
321
|
|
|
add_filter( 'admin_body_class', array( $this, 'add_bs5_admin_body_class' ), 99, 1 ); |
322
|
|
|
add_filter( 'body_class', array( $this, 'add_bs5_body_class' ) ); |
323
|
|
|
} |
324
|
|
|
|
325
|
|
|
/** |
326
|
|
|
* Maybe load CSS |
327
|
|
|
* |
328
|
|
|
* We load super early in case there is a theme version that might change the colors |
329
|
|
|
*/ |
330
|
|
|
if ( $this->settings['css'] ) { |
331
|
|
|
$priority = $this->is_bs3_compat() ? 100 : 1; |
332
|
|
|
$priority = $aui_bs5 ? 10 : $priority; |
333
|
|
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority ); |
334
|
|
|
} |
335
|
|
|
if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
336
|
|
|
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
337
|
|
|
} |
338
|
|
|
|
339
|
|
|
// maybe load JS |
340
|
|
|
if ( $this->settings['js'] ) { |
341
|
|
|
$priority = $this->is_bs3_compat() ? 100 : 1; |
342
|
|
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
343
|
|
|
} |
344
|
|
|
if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
345
|
|
|
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
346
|
|
|
} |
347
|
|
|
|
348
|
|
|
// Maybe set the HTML font size |
349
|
|
|
if ( $this->settings['html_font_size'] ) { |
350
|
|
|
add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
351
|
|
|
} |
352
|
|
|
|
353
|
|
|
// Maybe show backend style error |
354
|
|
|
if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){ |
355
|
|
|
add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) ); |
356
|
|
|
} |
357
|
|
|
|
358
|
|
|
} |
359
|
|
|
|
360
|
|
|
/** |
361
|
|
|
* Show admin notice if backend scripts not loaded. |
362
|
|
|
*/ |
363
|
|
|
public function show_admin_style_notice(){ |
364
|
|
|
$fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin')); |
365
|
|
|
$button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>'; |
366
|
|
|
$message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button; |
367
|
|
|
echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>'; |
368
|
|
|
} |
369
|
|
|
|
370
|
|
|
/** |
371
|
|
|
* Check if we should load the admin scripts or not. |
372
|
|
|
* |
373
|
|
|
* @return bool |
374
|
|
|
*/ |
375
|
|
|
public function load_admin_scripts(){ |
376
|
|
|
$result = true; |
377
|
|
|
|
378
|
|
|
// check if specifically disabled |
379
|
|
|
if(!empty($this->settings['disable_admin'])){ |
380
|
|
|
$url_parts = explode("\n",$this->settings['disable_admin']); |
381
|
|
|
foreach($url_parts as $part){ |
382
|
|
|
if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
383
|
|
|
return false; // return early, no point checking further |
384
|
|
|
} |
385
|
|
|
} |
386
|
|
|
} |
387
|
|
|
|
388
|
|
|
return $result; |
389
|
|
|
} |
390
|
|
|
|
391
|
|
|
/** |
392
|
|
|
* Add a html font size to the footer. |
393
|
|
|
*/ |
394
|
|
|
public function html_font_size(){ |
395
|
|
|
$this->settings = $this->get_settings(); |
396
|
|
|
echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
397
|
|
|
} |
398
|
|
|
|
399
|
|
|
/** |
400
|
|
|
* Check if the current admin screen should load scripts. |
401
|
|
|
* |
402
|
|
|
* @return bool |
403
|
|
|
*/ |
404
|
|
|
public function is_aui_screen(){ |
405
|
|
|
// echo '###';exit; |
406
|
|
|
$load = false; |
407
|
|
|
// check if we should load or not |
408
|
|
|
if ( is_admin() ) { |
409
|
|
|
// Only enable on set pages |
410
|
|
|
$aui_screens = array( |
411
|
|
|
'page', |
412
|
|
|
'post', |
413
|
|
|
'settings_page_ayecode-ui-settings', |
414
|
|
|
'appearance_page_gutenberg-widgets', |
415
|
|
|
'widgets', |
416
|
|
|
'ayecode-ui-settings', |
417
|
|
|
'site-editor' |
418
|
|
|
); |
419
|
|
|
$screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
420
|
|
|
|
421
|
|
|
$screen = get_current_screen(); |
|
|
|
|
422
|
|
|
|
423
|
|
|
// echo '###'.$screen->id; |
424
|
|
|
|
425
|
|
|
// check if we are on a AUI screen |
426
|
|
|
if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
|
|
|
427
|
|
|
$load = true; |
428
|
|
|
} |
429
|
|
|
|
430
|
|
|
//load for widget previews in WP 5.8 |
431
|
|
|
if( !empty($_REQUEST['legacy-widget-preview'])){ |
432
|
|
|
$load = true; |
433
|
|
|
} |
434
|
|
|
} |
435
|
|
|
|
436
|
|
|
return apply_filters( 'aui_load_on_admin' , $load ); |
437
|
|
|
} |
438
|
|
|
|
439
|
|
|
/** |
440
|
|
|
* Check if the current theme is a block theme. |
441
|
|
|
* |
442
|
|
|
* @return bool |
443
|
|
|
*/ |
444
|
|
|
public static function is_block_theme() { |
445
|
|
|
if ( function_exists( 'wp_is_block_theme' && wp_is_block_theme() ) ) { |
|
|
|
|
446
|
|
|
return true; |
447
|
|
|
} |
448
|
|
|
|
449
|
|
|
return false; |
450
|
|
|
} |
451
|
|
|
|
452
|
|
|
/** |
453
|
|
|
* Adds the styles. |
454
|
|
|
*/ |
455
|
|
|
public function enqueue_style() { |
456
|
|
|
global $aui_bs5; |
457
|
|
|
|
458
|
|
|
$load_fse = false; |
459
|
|
|
|
460
|
|
|
if( is_admin() && !$this->is_aui_screen()){ |
461
|
|
|
// don't add wp-admin scripts if not requested to |
462
|
|
|
}else{ |
463
|
|
|
$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
464
|
|
|
|
465
|
|
|
$rtl = is_rtl() && ! $aui_bs5 ? '-rtl' : ''; |
466
|
|
|
|
467
|
|
|
$bs_ver = $this->settings['bs_ver'] == '5' ? '-v5' : ''; |
468
|
|
|
|
469
|
|
|
if($this->settings[$css_setting]){ |
470
|
|
|
$compatibility = $this->settings[$css_setting]=='core' ? false : true; |
471
|
|
|
$url = $this->settings[$css_setting]=='core' ? $this->url.'assets'.$bs_ver.'/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets'.$bs_ver.'/css/ayecode-ui-compatibility'.$rtl.'.css'; |
472
|
|
|
|
473
|
|
|
|
474
|
|
|
|
475
|
|
|
wp_register_style( 'ayecode-ui', $url, array(), $this->version ); |
476
|
|
|
wp_enqueue_style( 'ayecode-ui' ); |
477
|
|
|
|
478
|
|
|
$current_screen = function_exists('get_current_screen' ) ? get_current_screen() : ''; |
|
|
|
|
479
|
|
|
|
480
|
|
|
// if ( is_admin() && !empty($_REQUEST['postType']) ) { |
481
|
|
|
if ( is_admin() && ( !empty($_REQUEST['postType']) || $current_screen->is_block_editor() ) && ( defined( 'BLOCKSTRAP_VERSION' ) || defined( 'AUI_FSE' ) ) ) { |
|
|
|
|
482
|
|
|
$url = $this->url.'assets'.$bs_ver.'/css/ayecode-ui-fse.css'; |
483
|
|
|
wp_register_style( 'ayecode-ui-fse', $url, array(), $this->version ); |
484
|
|
|
wp_enqueue_style( 'ayecode-ui-fse' ); |
485
|
|
|
$load_fse = true; |
486
|
|
|
} |
487
|
|
|
|
488
|
|
|
|
489
|
|
|
// flatpickr |
490
|
|
|
wp_register_style( 'flatpickr', $this->url.'assets'.$bs_ver.'/css/flatpickr.min.css', array(), $this->version ); |
491
|
|
|
|
492
|
|
|
// fix some wp-admin issues |
493
|
|
|
if(is_admin()){ |
494
|
|
|
$custom_css = " |
495
|
|
|
body{ |
496
|
|
|
background-color: #f1f1f1; |
497
|
|
|
font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif; |
498
|
|
|
font-size:13px; |
499
|
|
|
} |
500
|
|
|
a { |
501
|
|
|
color: #0073aa; |
502
|
|
|
text-decoration: underline; |
503
|
|
|
} |
504
|
|
|
label { |
505
|
|
|
display: initial; |
506
|
|
|
margin-bottom: 0; |
507
|
|
|
} |
508
|
|
|
input, select { |
509
|
|
|
margin: 1px; |
510
|
|
|
line-height: initial; |
511
|
|
|
} |
512
|
|
|
th, td, div, h2 { |
513
|
|
|
box-sizing: content-box; |
514
|
|
|
} |
515
|
|
|
p { |
516
|
|
|
font-size: 13px; |
517
|
|
|
line-height: 1.5; |
518
|
|
|
margin: 1em 0; |
519
|
|
|
} |
520
|
|
|
h1, h2, h3, h4, h5, h6 { |
521
|
|
|
display: block; |
522
|
|
|
font-weight: 600; |
523
|
|
|
} |
524
|
|
|
h2,h3 { |
525
|
|
|
font-size: 1.3em; |
526
|
|
|
margin: 1em 0 |
527
|
|
|
} |
528
|
|
|
.blocks-widgets-container .bsui *{ |
529
|
|
|
box-sizing: border-box; |
530
|
|
|
} |
531
|
|
|
.bs-tooltip-top .arrow{ |
532
|
|
|
margin-left:0px; |
533
|
|
|
} |
534
|
|
|
|
535
|
|
|
.custom-switch input[type=checkbox]{ |
536
|
|
|
display:none; |
537
|
|
|
} |
538
|
|
|
"; |
539
|
|
|
|
540
|
|
|
// @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
541
|
|
|
$custom_css .= " |
542
|
|
|
.edit-post-sidebar input[type=color].components-text-control__input{ |
543
|
|
|
padding: 0; |
544
|
|
|
} |
545
|
|
|
"; |
546
|
|
|
wp_add_inline_style( 'ayecode-ui', $custom_css ); |
547
|
|
|
} |
548
|
|
|
|
549
|
|
|
// custom changes |
550
|
|
|
if ( $load_fse ) { |
551
|
|
|
wp_add_inline_style( 'ayecode-ui-fse', self::custom_css($compatibility) ); |
552
|
|
|
}else{ |
553
|
|
|
wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
554
|
|
|
|
555
|
|
|
} |
556
|
|
|
|
557
|
|
|
} |
558
|
|
|
} |
559
|
|
|
|
560
|
|
|
|
561
|
|
|
} |
562
|
|
|
|
563
|
|
|
/** |
564
|
|
|
* Get inline script used if bootstrap enqueued |
565
|
|
|
* |
566
|
|
|
* If this remains small then its best to use this than to add another JS file. |
567
|
|
|
*/ |
568
|
|
|
public function inline_script() { |
569
|
|
|
global $aui_bs5; |
570
|
|
|
// Flatpickr calendar locale |
571
|
|
|
$flatpickr_locale = self::flatpickr_locale(); |
|
|
|
|
572
|
|
|
|
573
|
|
|
ob_start(); |
574
|
|
|
if ( $aui_bs5 ) { |
575
|
|
|
include_once( dirname( __FILE__ ) . '/inc/bs5-js.php' ); |
576
|
|
|
}else{ |
577
|
|
|
include_once( dirname( __FILE__ ) . '/inc/bs4-js.php' ); |
578
|
|
|
} |
579
|
|
|
$output = ob_get_clean(); |
580
|
|
|
|
581
|
|
|
/* |
582
|
|
|
* We only add the <script> tags for code highlighting, so we strip them from the output. |
583
|
|
|
*/ |
584
|
|
|
return str_replace( array( |
585
|
|
|
'<script>', |
586
|
|
|
'</script>' |
587
|
|
|
), '', self::minify_js($output) ); |
588
|
|
|
} |
589
|
|
|
|
590
|
|
|
|
591
|
|
|
/** |
592
|
|
|
* JS to help with conflict issues with other plugins and themes using bootstrap v3. |
593
|
|
|
* |
594
|
|
|
* @TODO we may need this when other conflicts arrise. |
595
|
|
|
* @return mixed |
596
|
|
|
*/ |
597
|
|
|
public static function bs3_compat_js() { |
598
|
|
|
ob_start(); |
599
|
|
|
?> |
600
|
|
|
<script> |
601
|
|
|
<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
602
|
|
|
/* With Avada builder */ |
603
|
|
|
|
604
|
|
|
<?php } ?> |
605
|
|
|
</script> |
606
|
|
|
<?php |
607
|
|
|
return str_replace( array( |
608
|
|
|
'<script>', |
609
|
|
|
'</script>' |
610
|
|
|
), '', ob_get_clean()); |
611
|
|
|
} |
612
|
|
|
|
613
|
|
|
/** |
614
|
|
|
* Get inline script used if bootstrap file browser enqueued. |
615
|
|
|
* |
616
|
|
|
* If this remains small then its best to use this than to add another JS file. |
617
|
|
|
*/ |
618
|
|
|
public function inline_script_file_browser(){ |
619
|
|
|
ob_start(); |
620
|
|
|
?> |
621
|
|
|
<script> |
622
|
|
|
// run on doc ready |
623
|
|
|
jQuery(document).ready(function () { |
624
|
|
|
bsCustomFileInput.init(); |
625
|
|
|
}); |
626
|
|
|
</script> |
627
|
|
|
<?php |
628
|
|
|
$output = ob_get_clean(); |
629
|
|
|
|
630
|
|
|
/* |
631
|
|
|
* We only add the <script> tags for code highlighting, so we strip them from the output. |
632
|
|
|
*/ |
633
|
|
|
return str_replace( array( |
634
|
|
|
'<script>', |
635
|
|
|
'</script>' |
636
|
|
|
), '', $output ); |
637
|
|
|
} |
638
|
|
|
|
639
|
|
|
/** |
640
|
|
|
* Adds the Font Awesome JS. |
641
|
|
|
*/ |
642
|
|
|
public function enqueue_scripts() { |
643
|
|
|
|
644
|
|
|
if( is_admin() && !$this->is_aui_screen()){ |
645
|
|
|
// don't add wp-admin scripts if not requested to |
646
|
|
|
}else { |
647
|
|
|
|
648
|
|
|
$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
649
|
|
|
|
650
|
|
|
$bs_ver = $this->settings['bs_ver'] == '5' ? '-v5' : ''; |
651
|
|
|
|
652
|
|
|
// select2 |
653
|
|
|
wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
654
|
|
|
|
655
|
|
|
// flatpickr |
656
|
|
|
wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version ); |
657
|
|
|
|
658
|
|
|
// flatpickr |
659
|
|
|
wp_register_script( 'iconpicker', $this->url . 'assets/js/fa-iconpicker.min.js', array(), $this->version ); |
660
|
|
|
|
661
|
|
|
// Bootstrap file browser |
662
|
|
|
wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); |
663
|
|
|
wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
664
|
|
|
|
665
|
|
|
$load_inline = false; |
666
|
|
|
|
667
|
|
|
if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
668
|
|
|
// Bootstrap bundle |
669
|
|
|
$url = $this->url . 'assets' . $bs_ver . '/js/bootstrap.bundle.min.js'; |
670
|
|
|
wp_register_script( 'bootstrap-js-bundle', $url, array( |
671
|
|
|
'select2', |
672
|
|
|
'jquery' |
673
|
|
|
), $this->version, $this->is_bs3_compat() ); |
674
|
|
|
// if in admin then add to footer for compatibility. |
675
|
|
|
is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' ); |
676
|
|
|
$script = $this->inline_script(); |
677
|
|
|
wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
678
|
|
|
} elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
679
|
|
|
$url = $this->url . 'assets/js/popper.min.js'; //@todo we need to update this to bs5 |
680
|
|
|
wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version ); |
681
|
|
|
wp_enqueue_script( 'bootstrap-js-popper' ); |
682
|
|
|
$load_inline = true; |
683
|
|
|
} else { |
684
|
|
|
$load_inline = true; |
685
|
|
|
} |
686
|
|
|
|
687
|
|
|
// Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
688
|
|
|
if ( $load_inline ) { |
689
|
|
|
wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) ); |
690
|
|
|
wp_enqueue_script( 'bootstrap-dummy' ); |
691
|
|
|
$script = $this->inline_script(); |
692
|
|
|
wp_add_inline_script( 'bootstrap-dummy', $script ); |
693
|
|
|
} |
694
|
|
|
} |
695
|
|
|
|
696
|
|
|
} |
697
|
|
|
|
698
|
|
|
/** |
699
|
|
|
* Enqueue flatpickr if called. |
700
|
|
|
*/ |
701
|
|
|
public function enqueue_flatpickr(){ |
702
|
|
|
wp_enqueue_style( 'flatpickr' ); |
703
|
|
|
wp_enqueue_script( 'flatpickr' ); |
704
|
|
|
} |
705
|
|
|
|
706
|
|
|
/** |
707
|
|
|
* Enqueue iconpicker if called. |
708
|
|
|
*/ |
709
|
|
|
public function enqueue_iconpicker(){ |
710
|
|
|
wp_enqueue_style( 'iconpicker' ); |
711
|
|
|
wp_enqueue_script( 'iconpicker' ); |
712
|
|
|
} |
713
|
|
|
|
714
|
|
|
/** |
715
|
|
|
* Get the url path to the current folder. |
716
|
|
|
* |
717
|
|
|
* @return string |
718
|
|
|
*/ |
719
|
|
|
public function get_url() { |
720
|
|
|
$content_dir = wp_normalize_path( untrailingslashit( WP_CONTENT_DIR ) ); |
721
|
|
|
$content_url = untrailingslashit( WP_CONTENT_URL ); |
722
|
|
|
|
723
|
|
|
// Replace http:// to https://. |
724
|
|
|
if ( strpos( $content_url, 'http://' ) === 0 && strpos( plugins_url(), 'https://' ) === 0 ) { |
725
|
|
|
$content_url = str_replace( 'http://', 'https://', $content_url ); |
726
|
|
|
} |
727
|
|
|
|
728
|
|
|
// Check if we are inside a plugin |
729
|
|
|
$file_dir = str_replace( "/includes", "", wp_normalize_path( dirname( __FILE__ ) ) ); |
730
|
|
|
$url = str_replace( $content_dir, $content_url, $file_dir ); |
731
|
|
|
|
732
|
|
|
return trailingslashit( $url ); |
733
|
|
|
} |
734
|
|
|
|
735
|
|
|
/** |
736
|
|
|
* Get the url path to the current folder. |
737
|
|
|
* |
738
|
|
|
* @return string |
739
|
|
|
*/ |
740
|
|
|
public function get_url_old() { |
741
|
|
|
|
742
|
|
|
$url = ''; |
743
|
|
|
// check if we are inside a plugin |
744
|
|
|
$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
745
|
|
|
|
746
|
|
|
// add check in-case user has changed wp-content dir name. |
747
|
|
|
$wp_content_folder_name = basename(WP_CONTENT_DIR); |
748
|
|
|
$dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
749
|
|
|
$url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
750
|
|
|
|
751
|
|
|
if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
752
|
|
|
$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
753
|
|
|
} |
754
|
|
|
|
755
|
|
|
return $url; |
756
|
|
|
} |
757
|
|
|
|
758
|
|
|
/** |
759
|
|
|
* Register the database settings with WordPress. |
760
|
|
|
*/ |
761
|
|
|
public function register_settings() { |
762
|
|
|
register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
763
|
|
|
} |
764
|
|
|
|
765
|
|
|
/** |
766
|
|
|
* Add the WordPress settings menu item. |
767
|
|
|
* @since 1.0.10 Calling function name direct will fail theme check so we don't. |
768
|
|
|
*/ |
769
|
|
|
public function menu_item() { |
770
|
|
|
$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
771
|
|
|
call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
772
|
|
|
$this, |
773
|
|
|
'settings_page' |
774
|
|
|
) ); |
775
|
|
|
} |
776
|
|
|
|
777
|
|
|
/** |
778
|
|
|
* Get a list of themes and their default JS settings. |
779
|
|
|
* |
780
|
|
|
* @return array |
781
|
|
|
*/ |
782
|
|
|
public function theme_js_settings(){ |
783
|
|
|
return array( |
784
|
|
|
'ayetheme' => 'popper', |
785
|
|
|
'listimia' => 'required', |
786
|
|
|
'listimia_backend' => 'core-popper', |
787
|
|
|
//'avada' => 'required', // removed as we now add compatibility |
788
|
|
|
); |
789
|
|
|
} |
790
|
|
|
|
791
|
|
|
/** |
792
|
|
|
* Get the current Font Awesome output settings. |
793
|
|
|
* |
794
|
|
|
* @return array The array of settings. |
795
|
|
|
*/ |
796
|
|
|
public function get_settings() { |
797
|
|
|
|
798
|
|
|
$db_settings = get_option( 'ayecode-ui-settings' ); |
799
|
|
|
$js_default = 'core-popper'; |
800
|
|
|
$js_default_backend = $js_default; |
801
|
|
|
|
802
|
|
|
// maybe set defaults (if no settings set) |
803
|
|
|
if(empty($db_settings)){ |
804
|
|
|
$active_theme = strtolower( get_template() ); // active parent theme. |
805
|
|
|
$theme_js_settings = self::theme_js_settings(); |
|
|
|
|
806
|
|
|
if(isset($theme_js_settings[$active_theme])){ |
807
|
|
|
$js_default = $theme_js_settings[$active_theme]; |
808
|
|
|
$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
809
|
|
|
} |
810
|
|
|
} |
811
|
|
|
|
812
|
|
|
/** |
813
|
|
|
* Filter the default settings. |
814
|
|
|
*/ |
815
|
|
|
$defaults = apply_filters( 'ayecode-ui-default-settings', array( |
816
|
|
|
'css' => 'compatibility', // core, compatibility |
817
|
|
|
'js' => $js_default, // js to load, core-popper, popper |
818
|
|
|
'html_font_size' => '16', // js to load, core-popper, popper |
819
|
|
|
'css_backend' => 'compatibility', // core, compatibility |
820
|
|
|
'js_backend' => $js_default_backend, // js to load, core-popper, popper |
821
|
|
|
'disable_admin' => '', // URL snippets to disable loading on admin |
822
|
|
|
'bs_ver' => '5', // The default bootstrap version to sue by default |
823
|
|
|
), $db_settings ); |
824
|
|
|
|
825
|
|
|
$settings = wp_parse_args( $db_settings, $defaults ); |
826
|
|
|
|
827
|
|
|
/** |
828
|
|
|
* Filter the Bootstrap settings. |
829
|
|
|
* |
830
|
|
|
* @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
831
|
|
|
*/ |
832
|
|
|
return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
833
|
|
|
} |
834
|
|
|
|
835
|
|
|
|
836
|
|
|
/** |
837
|
|
|
* The settings page html output. |
838
|
|
|
*/ |
839
|
|
|
public function settings_page() { |
840
|
|
|
if ( ! current_user_can( 'manage_options' ) ) { |
841
|
|
|
wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
842
|
|
|
} |
843
|
|
|
$overrides = apply_filters( 'ayecode-ui-settings', array(), array(), array() ); |
844
|
|
|
|
845
|
|
|
?> |
846
|
|
|
<div class="wrap"> |
847
|
|
|
<h1><?php echo $this->name; ?></h1> |
848
|
|
|
<p><?php echo apply_filters( 'ayecode-ui-settings-message', __("Here you can adjust settings if you are having compatibility issues.",'aui') );?></p> |
849
|
|
|
<form method="post" action="options.php"> |
850
|
|
|
<?php |
851
|
|
|
settings_fields( 'ayecode-ui-settings' ); |
852
|
|
|
do_settings_sections( 'ayecode-ui-settings' ); |
853
|
|
|
?> |
854
|
|
|
|
855
|
|
|
<h2><?php _e( 'BootStrap Version', 'aui' ); ?></h2> |
856
|
|
|
<p><?php echo apply_filters( 'ayecode-ui-version-settings-message', __("V5 is recommended, however if you have another plugin installed using v4, you may need to use v4 also.",'aui') );?></p> |
857
|
|
|
<div class="bsui"><?php |
858
|
|
|
if ( ! empty( $overrides ) ) { |
859
|
|
|
echo aui()->alert(array( |
860
|
|
|
'type'=> 'info', |
861
|
|
|
'content'=> __("Some options are disabled as your current theme is overriding them.",'aui') |
862
|
|
|
)); |
863
|
|
|
} |
864
|
|
|
?> |
865
|
|
|
</div> |
866
|
|
|
<table class="form-table wpbs-table-version-settings"> |
867
|
|
|
<tr valign="top"> |
868
|
|
|
<th scope="row"><label |
869
|
|
|
for="wpbs-css"><?php _e( 'Version', 'aui' ); ?></label></th> |
870
|
|
|
<td> |
871
|
|
|
<select name="ayecode-ui-settings[bs_ver]" id="wpbs-css" <?php echo !empty($overrides['bs_ver']) ? 'disabled' : ''; ?>> |
872
|
|
|
<option value="5" <?php selected( $this->settings['bs_ver'], '5' ); ?>><?php _e( 'v5 (recommended)', 'aui' ); ?></option> |
873
|
|
|
<option value="4" <?php selected( $this->settings['bs_ver'], '4' ); ?>><?php _e( 'v4 (legacy)', 'aui' ); ?></option> |
874
|
|
|
</select> |
875
|
|
|
</td> |
876
|
|
|
</tr> |
877
|
|
|
</table> |
878
|
|
|
|
879
|
|
|
<h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
880
|
|
|
<table class="form-table wpbs-table-settings"> |
881
|
|
|
<tr valign="top"> |
882
|
|
|
<th scope="row"><label |
883
|
|
|
for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
884
|
|
|
<td> |
885
|
|
|
<select name="ayecode-ui-settings[css]" id="wpbs-css" <?php echo !empty($overrides['css']) ? 'disabled' : ''; ?>> |
886
|
|
|
<option value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
887
|
|
|
<option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option> |
888
|
|
|
<option value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
889
|
|
|
</select> |
890
|
|
|
</td> |
891
|
|
|
</tr> |
892
|
|
|
|
893
|
|
|
<tr valign="top"> |
894
|
|
|
<th scope="row"><label |
895
|
|
|
for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
896
|
|
|
<td> |
897
|
|
|
<select name="ayecode-ui-settings[js]" id="wpbs-js" <?php echo !empty($overrides['js']) ? 'disabled' : ''; ?>> |
898
|
|
|
<option value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
899
|
|
|
<option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
900
|
|
|
<option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
901
|
|
|
<option value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
902
|
|
|
</select> |
903
|
|
|
</td> |
904
|
|
|
</tr> |
905
|
|
|
|
906
|
|
|
<tr valign="top"> |
907
|
|
|
<th scope="row"><label |
908
|
|
|
for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th> |
909
|
|
|
<td> |
910
|
|
|
<input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint( $this->settings['html_font_size']); ?>" placeholder="16" <?php echo !empty($overrides['html_font_size']) ? 'disabled' : ''; ?> /> |
911
|
|
|
<p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.",'aui');?></p> |
912
|
|
|
</td> |
913
|
|
|
</tr> |
914
|
|
|
|
915
|
|
|
</table> |
916
|
|
|
|
917
|
|
|
<h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2> |
918
|
|
|
<table class="form-table wpbs-table-settings"> |
919
|
|
|
<tr valign="top"> |
920
|
|
|
<th scope="row"><label |
921
|
|
|
for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
922
|
|
|
<td> |
923
|
|
|
<select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin" <?php echo !empty($overrides['css_backend']) ? 'disabled' : ''; ?>> |
924
|
|
|
<option value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
925
|
|
|
<option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode (will cause style issues)', 'aui' ); ?></option> |
926
|
|
|
<option value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
927
|
|
|
</select> |
928
|
|
|
</td> |
929
|
|
|
</tr> |
930
|
|
|
|
931
|
|
|
<tr valign="top"> |
932
|
|
|
<th scope="row"><label |
933
|
|
|
for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
934
|
|
|
<td> |
935
|
|
|
<select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin" <?php echo !empty($overrides['js_backend']) ? 'disabled' : ''; ?>> |
936
|
|
|
<option value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
937
|
|
|
<option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
938
|
|
|
<option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
939
|
|
|
<option value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
940
|
|
|
</select> |
941
|
|
|
</td> |
942
|
|
|
</tr> |
943
|
|
|
|
944
|
|
|
<tr valign="top"> |
945
|
|
|
<th scope="row"><label |
946
|
|
|
for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th> |
947
|
|
|
<td> |
948
|
|
|
<p><?php _e( 'If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui' ); ?></p> |
949
|
|
|
<textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php action=go"><?php echo $this->settings['disable_admin'];?></textarea> |
950
|
|
|
|
951
|
|
|
</td> |
952
|
|
|
</tr> |
953
|
|
|
|
954
|
|
|
</table> |
955
|
|
|
|
956
|
|
|
<?php |
957
|
|
|
submit_button(); |
958
|
|
|
?> |
959
|
|
|
</form> |
960
|
|
|
|
961
|
|
|
<div id="wpbs-version"><?php echo $this->version; ?></div> |
962
|
|
|
</div> |
963
|
|
|
|
964
|
|
|
<?php |
965
|
|
|
} |
966
|
|
|
|
967
|
|
|
public function customizer_settings($wp_customize){ |
968
|
|
|
$wp_customize->add_section('aui_settings', array( |
969
|
|
|
'title' => __('AyeCode UI','aui'), |
970
|
|
|
'priority' => 120, |
971
|
|
|
)); |
972
|
|
|
|
973
|
|
|
// ============================= |
974
|
|
|
// = Color Picker = |
975
|
|
|
// ============================= |
976
|
|
|
$wp_customize->add_setting('aui_options[color_primary]', array( |
977
|
|
|
'default' => AUI_PRIMARY_COLOR, |
978
|
|
|
'sanitize_callback' => 'sanitize_hex_color', |
979
|
|
|
'capability' => 'edit_theme_options', |
980
|
|
|
'type' => 'option', |
981
|
|
|
'transport' => 'refresh', |
982
|
|
|
)); |
983
|
|
|
$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
984
|
|
|
'label' => __('Primary Color','aui'), |
985
|
|
|
'section' => 'aui_settings', |
986
|
|
|
'settings' => 'aui_options[color_primary]', |
987
|
|
|
))); |
988
|
|
|
|
989
|
|
|
$wp_customize->add_setting('aui_options[color_secondary]', array( |
990
|
|
|
'default' => '#6c757d', |
991
|
|
|
'sanitize_callback' => 'sanitize_hex_color', |
992
|
|
|
'capability' => 'edit_theme_options', |
993
|
|
|
'type' => 'option', |
994
|
|
|
'transport' => 'refresh', |
995
|
|
|
)); |
996
|
|
|
$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
997
|
|
|
'label' => __('Secondary Color','aui'), |
998
|
|
|
'section' => 'aui_settings', |
999
|
|
|
'settings' => 'aui_options[color_secondary]', |
1000
|
|
|
))); |
1001
|
|
|
} |
1002
|
|
|
|
1003
|
|
|
/** |
1004
|
|
|
* CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
1005
|
|
|
* |
1006
|
|
|
* @return mixed |
1007
|
|
|
*/ |
1008
|
|
|
public static function bs3_compat_css() { |
1009
|
|
|
ob_start(); |
1010
|
|
|
?> |
1011
|
|
|
<style> |
1012
|
|
|
/* Bootstrap 3 compatibility */ |
1013
|
|
|
body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;} |
1014
|
|
|
body.modal-open .modal.show:not(.in) {opacity:1;z-index: 99999} |
1015
|
|
|
body.modal-open .modal.show:not(.in) .modal-content {box-shadow: none;} |
1016
|
|
|
body.modal-open .modal.show:not(.in) .modal-dialog {transform: initial;} |
1017
|
|
|
|
1018
|
|
|
body.modal-open .modal.bsui .modal-dialog{left: auto;} |
1019
|
|
|
|
1020
|
|
|
.collapse.show:not(.in){display: inherit;} |
1021
|
|
|
.fade.show{opacity: 1;} |
1022
|
|
|
|
1023
|
|
|
<?php if( defined( 'SVQ_THEME_VERSION' ) ){ ?> |
1024
|
|
|
/* KLEO theme specific */ |
1025
|
|
|
.kleo-main-header .navbar-collapse.collapse.show:not(.in){display: block !important;} |
1026
|
|
|
<?php } ?> |
1027
|
|
|
|
1028
|
|
|
<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
1029
|
|
|
/* With Avada builder */ |
1030
|
|
|
body.modal-open .modal.in {opacity:1;z-index: 99999} |
1031
|
|
|
body.modal-open .modal.bsui.in .modal-content {box-shadow: none;} |
1032
|
|
|
.bsui .collapse.in{display: inherit;} |
1033
|
|
|
.bsui .collapse.in.row.show{display: flex;} |
1034
|
|
|
.bsui .collapse.in.row:not(.show){display: none;} |
1035
|
|
|
|
1036
|
|
|
<?php } ?> |
1037
|
|
|
</style> |
1038
|
|
|
<?php |
1039
|
|
|
return str_replace( array( |
1040
|
|
|
'<style>', |
1041
|
|
|
'</style>' |
1042
|
|
|
), '', self::minify_css( ob_get_clean() ) ); |
1043
|
|
|
} |
1044
|
|
|
|
1045
|
|
|
|
1046
|
|
|
public static function custom_css($compatibility = true) { |
1047
|
|
|
global $aui_bs5; |
1048
|
|
|
|
1049
|
|
|
$colors = array(); |
1050
|
|
|
if ( defined( 'BLOCKSTRAP_VERSION' ) ) { |
1051
|
|
|
|
1052
|
|
|
$setting = wp_get_global_settings(); |
1053
|
|
|
|
1054
|
|
|
// print_r(wp_get_global_styles());exit; |
1055
|
|
|
// print_r(get_default_block_editor_settings());exit; |
1056
|
|
|
|
1057
|
|
|
// print_r($setting);echo '###';exit; |
1058
|
|
|
if(!empty($setting['color']['palette']['theme'])){ |
1059
|
|
|
foreach($setting['color']['palette']['theme'] as $color){ |
1060
|
|
|
$colors[$color['slug']] = esc_attr($color['color']); |
1061
|
|
|
} |
1062
|
|
|
} |
1063
|
|
|
|
1064
|
|
|
if(!empty($setting['color']['palette']['custom'])){ |
1065
|
|
|
foreach($setting['color']['palette']['custom'] as $color){ |
1066
|
|
|
$colors[$color['slug']] = esc_attr($color['color']); |
1067
|
|
|
} |
1068
|
|
|
} |
1069
|
|
|
}else{ |
1070
|
|
|
$settings = get_option('aui_options'); |
1071
|
|
|
$colors = array( |
1072
|
|
|
'primary' => ! empty( $settings['color_primary'] ) ? $settings['color_primary'] : AUI_PRIMARY_COLOR, |
1073
|
|
|
'secondary' => ! empty( $settings['color_secondary'] ) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR |
1074
|
|
|
); |
1075
|
|
|
} |
1076
|
|
|
|
1077
|
|
|
ob_start(); |
1078
|
|
|
|
1079
|
|
|
?> |
1080
|
|
|
<style> |
1081
|
|
|
<?php |
1082
|
|
|
|
1083
|
|
|
// BS v3 compat |
1084
|
|
|
if( self::is_bs3_compat() ){ |
1085
|
|
|
echo self::bs3_compat_css(); |
1086
|
|
|
} |
1087
|
|
|
|
1088
|
|
|
if(!empty($colors)){ |
1089
|
|
|
$d_colors = self::get_colors(true); |
1090
|
|
|
|
1091
|
|
|
$current_screen = function_exists('get_current_screen' ) ? get_current_screen() : ''; |
|
|
|
|
1092
|
|
|
$is_fse = false; |
1093
|
|
|
if ( is_admin() && ( !empty($_REQUEST['postType']) || $current_screen->is_block_editor() ) && ( defined( 'BLOCKSTRAP_VERSION' ) || defined( 'AUI_FSE' ) ) ) { |
1094
|
|
|
$is_fse = true; |
1095
|
|
|
} |
1096
|
|
|
|
1097
|
|
|
// $is_fse = !empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template'; |
1098
|
|
|
foreach($colors as $key => $color ){ |
1099
|
|
|
if((empty( $d_colors[$key]) || $d_colors[$key] != $color) || $is_fse ) { |
1100
|
|
|
$var = $is_fse ? "var(--wp--preset--color--$key)" : $color; |
1101
|
|
|
$compat = $is_fse ? '.editor-styles-wrapper' : $compatibility; |
1102
|
|
|
echo self::css_overwrite($key,$var,$compat); |
1103
|
|
|
} |
1104
|
|
|
} |
1105
|
|
|
// exit; |
1106
|
|
|
} |
1107
|
|
|
|
1108
|
|
|
// Set admin bar z-index lower when modal is open. |
1109
|
|
|
echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
1110
|
|
|
|
1111
|
|
|
if(is_admin()){ |
1112
|
|
|
echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; |
1113
|
|
|
} |
1114
|
|
|
|
1115
|
|
|
if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) ){ |
1116
|
|
|
$css = ''; |
1117
|
|
|
$theme_settings = wp_get_global_styles(); |
1118
|
|
|
|
1119
|
|
|
// font face |
1120
|
|
|
if( !empty( $theme_settings['typography']['fontFamily'] ) ){ |
1121
|
|
|
$t_fontface = str_replace( array('var:preset|','font-family|'), array('--wp--preset--','font-family--'), $theme_settings['typography']['fontFamily'] ); //var(--wp--preset--font-family--poppins) |
1122
|
|
|
$css .= '--bs-body-font-family: var(' . esc_attr($t_fontface) . ');'; |
1123
|
|
|
} |
1124
|
|
|
|
1125
|
|
|
// font size |
1126
|
|
|
$css .= '--bs-body-font-size: var(--wp--preset--font-size--small);'; |
1127
|
|
|
|
1128
|
|
|
|
1129
|
|
|
if($css){ |
1130
|
|
|
echo 'body{' . $css . '}'; |
1131
|
|
|
} |
1132
|
|
|
} |
1133
|
|
|
?> |
1134
|
|
|
</style> |
1135
|
|
|
<?php |
1136
|
|
|
|
1137
|
|
|
|
1138
|
|
|
/* |
1139
|
|
|
* We only add the <script> tags for code highlighting, so we strip them from the output. |
1140
|
|
|
*/ |
1141
|
|
|
return str_replace( array( |
1142
|
|
|
'<style>', |
1143
|
|
|
'</style>' |
1144
|
|
|
), '', self::minify_css( ob_get_clean() ) ); |
1145
|
|
|
} |
1146
|
|
|
|
1147
|
|
|
|
1148
|
|
|
|
1149
|
|
|
/** |
1150
|
|
|
* Check if we should add booststrap 3 compatibility changes. |
1151
|
|
|
* |
1152
|
|
|
* @return bool |
1153
|
|
|
*/ |
1154
|
|
|
public static function is_bs3_compat(){ |
1155
|
|
|
return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
1156
|
|
|
} |
1157
|
|
|
|
1158
|
|
|
/** |
1159
|
|
|
* Build the CSS to overwrite a bootstrap color variable. |
1160
|
|
|
* |
1161
|
|
|
* @param $type |
1162
|
|
|
* @param $color_code |
1163
|
|
|
* @param $compatibility |
1164
|
|
|
* |
1165
|
|
|
* @return string |
1166
|
|
|
*/ |
1167
|
|
|
public static function css_overwrite($type,$color_code,$compatibility){ |
1168
|
|
|
global $aui_bs5; |
1169
|
|
|
|
1170
|
|
|
$is_var = false; |
1171
|
|
|
if(!$color_code){return '';} |
1172
|
|
|
if(!sanitize_hex_color($color_code)){ |
1173
|
|
|
$color_code = esc_attr($color_code); |
1174
|
|
|
$is_var = true; |
1175
|
|
|
// $color_code = "rgba($color_code, 0.5)"; |
1176
|
|
|
// echo '###1'.$color_code.'###';//exit; |
1177
|
|
|
} |
1178
|
|
|
|
1179
|
|
|
if(!$color_code){return '';} |
1180
|
|
|
|
1181
|
|
|
if($compatibility===true || $compatibility===1){ |
1182
|
|
|
$compatibility = '.bsui'; |
1183
|
|
|
}elseif(!$compatibility){ |
1184
|
|
|
$compatibility = ''; |
1185
|
|
|
}else{ |
1186
|
|
|
$compatibility = esc_attr($compatibility); |
1187
|
|
|
} |
1188
|
|
|
|
1189
|
|
|
// echo '####'.$color_code;exit; |
1190
|
|
|
|
1191
|
|
|
$type = sanitize_html_class($type); |
1192
|
|
|
|
1193
|
|
|
/** |
1194
|
|
|
* c = color, b = background color, o = border-color, f = fill |
1195
|
|
|
*/ |
1196
|
|
|
$selectors = array( |
1197
|
|
|
".btn-{$type}" => array( 'b', 'o' ), |
1198
|
|
|
".btn-{$type}.disabled" => array( 'b', 'o' ), |
1199
|
|
|
".btn-{$type}:disabled" => array( 'b', 'o' ), |
1200
|
|
|
".btn-outline-{$type}" => array( 'c', 'o' ), |
1201
|
|
|
".btn-outline-{$type}:hover" => array( 'b', 'o' ), |
1202
|
|
|
".btn-outline-{$type}:not(:disabled):not(.disabled).active" => array( 'b', 'o' ), |
1203
|
|
|
".btn-outline-{$type}:not(:disabled):not(.disabled):active" => array( 'b', 'o' ), |
1204
|
|
|
".show>.btn-outline-{$type}.dropdown-toggle" => array( 'b', 'o' ), |
1205
|
|
|
".badge-{$type}" => array( 'b' ), |
1206
|
|
|
".alert-{$type}" => array( 'b', 'o' ), |
1207
|
|
|
".bg-{$type}" => array( 'b', 'f' ), |
1208
|
|
|
".btn-link.btn-{$type}" => array( 'c' ), |
1209
|
|
|
); |
1210
|
|
|
|
1211
|
|
|
if ( $aui_bs5 ) { |
1212
|
|
|
unset($selectors[".alert-{$type}" ]); |
1213
|
|
|
} |
1214
|
|
|
|
1215
|
|
|
if ( $type == 'primary' ) { |
1216
|
|
|
$selectors = $selectors + array( |
1217
|
|
|
'a' => array( 'c' ), |
1218
|
|
|
'.btn-link' => array( 'c' ), |
1219
|
|
|
'.dropdown-item.active' => array( 'b' ), |
1220
|
|
|
'.custom-control-input:checked~.custom-control-label::before' => array( |
1221
|
|
|
'b', |
1222
|
|
|
'o' |
1223
|
|
|
), |
1224
|
|
|
'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array( |
1225
|
|
|
'b', |
1226
|
|
|
'o' |
1227
|
|
|
), |
1228
|
|
|
'.nav-pills .nav-link.active' => array( 'b' ), |
1229
|
|
|
'.nav-pills .show>.nav-link' => array( 'b' ), |
1230
|
|
|
'.page-link' => array( 'c' ), |
1231
|
|
|
'.page-item.active .page-link' => array( |
1232
|
|
|
'b', |
1233
|
|
|
'o' |
1234
|
|
|
), |
1235
|
|
|
'.progress-bar' => array( 'b' ), |
1236
|
|
|
'.list-group-item.active' => array( |
1237
|
|
|
'b', |
1238
|
|
|
'o' |
1239
|
|
|
), |
1240
|
|
|
'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array( 'b' ), |
1241
|
|
|
// '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1242
|
|
|
// '.custom-range::-moz-range-thumb' => array('b'), |
1243
|
|
|
// '.custom-range::-ms-thumb' => array('b'), |
1244
|
|
|
); |
1245
|
|
|
} |
1246
|
|
|
|
1247
|
|
|
$important_selectors = array( |
1248
|
|
|
".bg-{$type}" => array('b','f'), |
1249
|
|
|
".border-{$type}" => array('o'), |
1250
|
|
|
".text-{$type}" => array('c'), |
1251
|
|
|
); |
1252
|
|
|
|
1253
|
|
|
$color = array(); |
1254
|
|
|
$color_i = array(); |
1255
|
|
|
$background = array(); |
1256
|
|
|
$background_i = array(); |
1257
|
|
|
$border = array(); |
1258
|
|
|
$border_i = array(); |
1259
|
|
|
$fill = array(); |
1260
|
|
|
$fill_i = array(); |
1261
|
|
|
|
1262
|
|
|
$output = ''; |
1263
|
|
|
|
1264
|
|
|
// build rules into each type |
1265
|
|
|
foreach($selectors as $selector => $types){ |
1266
|
|
|
$selector = $compatibility ? $compatibility . " ".$selector : $selector; |
1267
|
|
|
$types = array_combine($types,$types); |
1268
|
|
|
if(isset($types['c'])){$color[] = $selector;} |
1269
|
|
|
if(isset($types['b'])){$background[] = $selector;} |
1270
|
|
|
if(isset($types['o'])){$border[] = $selector;} |
1271
|
|
|
if(isset($types['f'])){$fill[] = $selector;} |
1272
|
|
|
} |
1273
|
|
|
|
1274
|
|
|
// build rules into each type |
1275
|
|
|
foreach($important_selectors as $selector => $types){ |
1276
|
|
|
$selector = $compatibility ? $compatibility . " ".$selector : $selector; |
1277
|
|
|
$types = array_combine($types,$types); |
1278
|
|
|
if(isset($types['c'])){$color_i[] = $selector;} |
1279
|
|
|
if(isset($types['b'])){$background_i[] = $selector;} |
1280
|
|
|
if(isset($types['o'])){$border_i[] = $selector;} |
1281
|
|
|
if(isset($types['f'])){$fill_i[] = $selector;} |
1282
|
|
|
} |
1283
|
|
|
|
1284
|
|
|
// add any color rules |
1285
|
|
|
if(!empty($color)){ |
1286
|
|
|
$output .= implode(",",$color) . "{color: $color_code;} "; |
1287
|
|
|
} |
1288
|
|
|
if(!empty($color_i)){ |
1289
|
|
|
$output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
1290
|
|
|
} |
1291
|
|
|
|
1292
|
|
|
// add any background color rules |
1293
|
|
|
if(!empty($background)){ |
1294
|
|
|
$output .= implode(",",$background) . "{background-color: $color_code;} "; |
1295
|
|
|
} |
1296
|
|
|
if(!empty($background_i)){ |
1297
|
|
|
$output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
1298
|
|
|
} |
1299
|
|
|
|
1300
|
|
|
// add any border color rules |
1301
|
|
|
if(!empty($border)){ |
1302
|
|
|
$output .= implode(",",$border) . "{border-color: $color_code;} "; |
1303
|
|
|
} |
1304
|
|
|
if(!empty($border_i)){ |
1305
|
|
|
$output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
1306
|
|
|
} |
1307
|
|
|
|
1308
|
|
|
// add any fill color rules |
1309
|
|
|
if(!empty($fill)){ |
1310
|
|
|
$output .= implode(",",$fill) . "{fill: $color_code;} "; |
1311
|
|
|
} |
1312
|
|
|
if(!empty($fill_i)){ |
1313
|
|
|
$output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
1314
|
|
|
} |
1315
|
|
|
|
1316
|
|
|
|
1317
|
|
|
$prefix = $compatibility ? $compatibility . " " : ""; |
1318
|
|
|
|
1319
|
|
|
$transition = $is_var ? 'transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,filter 0.15s ease-in-out;' : ''; |
1320
|
|
|
// darken |
1321
|
|
|
$darker_075 = $is_var ? $color_code.';filter:brightness(0.925)' : self::css_hex_lighten_darken($color_code,"-0.075"); |
|
|
|
|
1322
|
|
|
$darker_10 = $is_var ? $color_code.';filter:brightness(0.9)' : self::css_hex_lighten_darken($color_code,"-0.10"); |
1323
|
|
|
$darker_125 = $is_var ? $color_code.';filter:brightness(0.875)' : self::css_hex_lighten_darken($color_code,"-0.125"); |
1324
|
|
|
$darker_40 = $is_var ? $color_code.';filter:brightness(0.6)' : self::css_hex_lighten_darken($color_code,"-0.4"); |
1325
|
|
|
|
1326
|
|
|
// lighten |
1327
|
|
|
$lighten_25 = $is_var ? $color_code.';filter:brightness(1.25)' :self::css_hex_lighten_darken($color_code,"0.25"); |
1328
|
|
|
|
1329
|
|
|
// opacity see https://css-tricks.com/8-digit-hex-codes/ |
1330
|
|
|
$op_25 = $color_code."40"; // 25% opacity |
1331
|
|
|
|
1332
|
|
|
|
1333
|
|
|
// button states |
1334
|
|
|
$output .= $is_var ? $prefix ." .btn-{$type}{{$transition }} " : ''; |
1335
|
|
|
$output .= $prefix ." .btn-{$type}:hover, $prefix .btn-{$type}:focus, $prefix .btn-{$type}.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
1336
|
|
|
// $output .= $prefix ." .btn-{$type}:hover, $prefix .btn-{$type}:focus, $prefix .btn-{$type}.focus{background-color: #000; border-color: #000;} "; |
1337
|
|
|
$output .= $prefix ." .btn-outline-{$type}:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-{$type}:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-{$type}.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
1338
|
|
|
$output .= $prefix ." .btn-{$type}:not(:disabled):not(.disabled):active, $prefix .btn-{$type}:not(:disabled):not(.disabled).active, .show>$prefix .btn-{$type}.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
1339
|
|
|
$output .= $prefix ." .btn-{$type}:not(:disabled):not(.disabled):active:focus, $prefix .btn-{$type}:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-{$type}.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
1340
|
|
|
|
1341
|
|
|
if ( $type == 'primary' ) { |
1342
|
|
|
// dropdown's |
1343
|
|
|
$output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
1344
|
|
|
|
1345
|
|
|
// input states |
1346
|
|
|
$output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} "; |
1347
|
|
|
|
1348
|
|
|
// page link |
1349
|
|
|
$output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
1350
|
|
|
} |
1351
|
|
|
|
1352
|
|
|
// alerts |
1353
|
|
|
if ( $aui_bs5 ) { |
1354
|
|
|
$output .= $is_var ? '' : $prefix ." .alert-{$type} {background-color: ".$color_code."20; border-color: ".$color_code."30;color:$darker_40} "; |
1355
|
|
|
} |
1356
|
|
|
|
1357
|
|
|
return $output; |
1358
|
|
|
} |
1359
|
|
|
|
1360
|
|
|
/** |
1361
|
|
|
* |
1362
|
|
|
* @deprecated 0.1.76 Use css_overwrite() |
1363
|
|
|
* |
1364
|
|
|
* @param $color_code |
1365
|
|
|
* @param $compatibility |
1366
|
|
|
* @param $use_variable |
1367
|
|
|
* |
1368
|
|
|
* @return string |
1369
|
|
|
*/ |
1370
|
|
|
public static function css_primary($color_code,$compatibility, $use_variable = false){ |
1371
|
|
|
|
1372
|
|
|
if(!$use_variable){ |
1373
|
|
|
$color_code = sanitize_hex_color($color_code); |
1374
|
|
|
if(!$color_code){return '';} |
1375
|
|
|
} |
1376
|
|
|
|
1377
|
|
|
/** |
1378
|
|
|
* c = color, b = background color, o = border-color, f = fill |
1379
|
|
|
*/ |
1380
|
|
|
$selectors = array( |
1381
|
|
|
'a' => array('c'), |
1382
|
|
|
'.btn-primary' => array('b','o'), |
1383
|
|
|
'.btn-primary.disabled' => array('b','o'), |
1384
|
|
|
'.btn-primary:disabled' => array('b','o'), |
1385
|
|
|
'.btn-outline-primary' => array('c','o'), |
1386
|
|
|
'.btn-outline-primary:hover' => array('b','o'), |
1387
|
|
|
'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
1388
|
|
|
'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
1389
|
|
|
'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
1390
|
|
|
'.btn-link' => array('c'), |
1391
|
|
|
'.dropdown-item.active' => array('b'), |
1392
|
|
|
'.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
1393
|
|
|
'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
1394
|
|
|
// '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1395
|
|
|
// '.custom-range::-moz-range-thumb' => array('b'), |
1396
|
|
|
// '.custom-range::-ms-thumb' => array('b'), |
1397
|
|
|
'.nav-pills .nav-link.active' => array('b'), |
1398
|
|
|
'.nav-pills .show>.nav-link' => array('b'), |
1399
|
|
|
'.page-link' => array('c'), |
1400
|
|
|
'.page-item.active .page-link' => array('b','o'), |
1401
|
|
|
'.badge-primary' => array('b'), |
1402
|
|
|
'.alert-primary' => array('b','o'), |
1403
|
|
|
'.progress-bar' => array('b'), |
1404
|
|
|
'.list-group-item.active' => array('b','o'), |
1405
|
|
|
'.bg-primary' => array('b','f'), |
1406
|
|
|
'.btn-link.btn-primary' => array('c'), |
1407
|
|
|
'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
1408
|
|
|
); |
1409
|
|
|
|
1410
|
|
|
$important_selectors = array( |
1411
|
|
|
'.bg-primary' => array('b','f'), |
1412
|
|
|
'.border-primary' => array('o'), |
1413
|
|
|
'.text-primary' => array('c'), |
1414
|
|
|
); |
1415
|
|
|
|
1416
|
|
|
$color = array(); |
1417
|
|
|
$color_i = array(); |
1418
|
|
|
$background = array(); |
1419
|
|
|
$background_i = array(); |
1420
|
|
|
$border = array(); |
1421
|
|
|
$border_i = array(); |
1422
|
|
|
$fill = array(); |
1423
|
|
|
$fill_i = array(); |
1424
|
|
|
|
1425
|
|
|
$output = ''; |
1426
|
|
|
|
1427
|
|
|
// build rules into each type |
1428
|
|
|
foreach($selectors as $selector => $types){ |
1429
|
|
|
$selector = $compatibility ? ".bsui ".$selector : $selector; |
1430
|
|
|
$types = array_combine($types,$types); |
1431
|
|
|
if(isset($types['c'])){$color[] = $selector;} |
1432
|
|
|
if(isset($types['b'])){$background[] = $selector;} |
1433
|
|
|
if(isset($types['o'])){$border[] = $selector;} |
1434
|
|
|
if(isset($types['f'])){$fill[] = $selector;} |
1435
|
|
|
} |
1436
|
|
|
|
1437
|
|
|
// build rules into each type |
1438
|
|
|
foreach($important_selectors as $selector => $types){ |
1439
|
|
|
$selector = $compatibility ? ".bsui ".$selector : $selector; |
1440
|
|
|
$types = array_combine($types,$types); |
1441
|
|
|
if(isset($types['c'])){$color_i[] = $selector;} |
1442
|
|
|
if(isset($types['b'])){$background_i[] = $selector;} |
1443
|
|
|
if(isset($types['o'])){$border_i[] = $selector;} |
1444
|
|
|
if(isset($types['f'])){$fill_i[] = $selector;} |
1445
|
|
|
} |
1446
|
|
|
|
1447
|
|
|
// add any color rules |
1448
|
|
|
if(!empty($color)){ |
1449
|
|
|
$output .= implode(",",$color) . "{color: $color_code;} "; |
1450
|
|
|
} |
1451
|
|
|
if(!empty($color_i)){ |
1452
|
|
|
$output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
1453
|
|
|
} |
1454
|
|
|
|
1455
|
|
|
// add any background color rules |
1456
|
|
|
if(!empty($background)){ |
1457
|
|
|
$output .= implode(",",$background) . "{background-color: $color_code;} "; |
1458
|
|
|
} |
1459
|
|
|
if(!empty($background_i)){ |
1460
|
|
|
$output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
1461
|
|
|
} |
1462
|
|
|
|
1463
|
|
|
// add any border color rules |
1464
|
|
|
if(!empty($border)){ |
1465
|
|
|
$output .= implode(",",$border) . "{border-color: $color_code;} "; |
1466
|
|
|
} |
1467
|
|
|
if(!empty($border_i)){ |
1468
|
|
|
$output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
1469
|
|
|
} |
1470
|
|
|
|
1471
|
|
|
// add any fill color rules |
1472
|
|
|
if(!empty($fill)){ |
1473
|
|
|
$output .= implode(",",$fill) . "{fill: $color_code;} "; |
1474
|
|
|
} |
1475
|
|
|
if(!empty($fill_i)){ |
1476
|
|
|
$output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
1477
|
|
|
} |
1478
|
|
|
|
1479
|
|
|
|
1480
|
|
|
$prefix = $compatibility ? ".bsui " : ""; |
1481
|
|
|
|
1482
|
|
|
// darken |
1483
|
|
|
$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
|
|
|
1484
|
|
|
$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
1485
|
|
|
$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
1486
|
|
|
|
1487
|
|
|
// lighten |
1488
|
|
|
$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
1489
|
|
|
|
1490
|
|
|
// opacity see https://css-tricks.com/8-digit-hex-codes/ |
1491
|
|
|
$op_25 = $color_code."40"; // 25% opacity |
1492
|
|
|
|
1493
|
|
|
|
1494
|
|
|
// button states |
1495
|
|
|
$output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
1496
|
|
|
$output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
1497
|
|
|
$output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
1498
|
|
|
$output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
1499
|
|
|
|
1500
|
|
|
|
1501
|
|
|
// dropdown's |
1502
|
|
|
$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
1503
|
|
|
|
1504
|
|
|
|
1505
|
|
|
// input states |
1506
|
|
|
$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
1507
|
|
|
|
1508
|
|
|
// page link |
1509
|
|
|
$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
1510
|
|
|
|
1511
|
|
|
return $output; |
1512
|
|
|
} |
1513
|
|
|
|
1514
|
|
|
/** |
1515
|
|
|
* |
1516
|
|
|
* @deprecated 0.1.76 Use css_overwrite() |
1517
|
|
|
* |
1518
|
|
|
* @param $color_code |
1519
|
|
|
* @param $compatibility |
1520
|
|
|
* |
1521
|
|
|
* @return string |
1522
|
|
|
*/ |
1523
|
|
|
public static function css_secondary($color_code,$compatibility){; |
1524
|
|
|
$color_code = sanitize_hex_color($color_code); |
1525
|
|
|
if(!$color_code){return '';} |
1526
|
|
|
/** |
1527
|
|
|
* c = color, b = background color, o = border-color, f = fill |
1528
|
|
|
*/ |
1529
|
|
|
$selectors = array( |
1530
|
|
|
'.btn-secondary' => array('b','o'), |
1531
|
|
|
'.btn-secondary.disabled' => array('b','o'), |
1532
|
|
|
'.btn-secondary:disabled' => array('b','o'), |
1533
|
|
|
'.btn-outline-secondary' => array('c','o'), |
1534
|
|
|
'.btn-outline-secondary:hover' => array('b','o'), |
1535
|
|
|
'.btn-outline-secondary.disabled' => array('c'), |
1536
|
|
|
'.btn-outline-secondary:disabled' => array('c'), |
1537
|
|
|
'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
1538
|
|
|
'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
1539
|
|
|
'.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
1540
|
|
|
'.badge-secondary' => array('b'), |
1541
|
|
|
'.alert-secondary' => array('b','o'), |
1542
|
|
|
'.btn-link.btn-secondary' => array('c'), |
1543
|
|
|
); |
1544
|
|
|
|
1545
|
|
|
$important_selectors = array( |
1546
|
|
|
'.bg-secondary' => array('b','f'), |
1547
|
|
|
'.border-secondary' => array('o'), |
1548
|
|
|
'.text-secondary' => array('c'), |
1549
|
|
|
); |
1550
|
|
|
|
1551
|
|
|
$color = array(); |
1552
|
|
|
$color_i = array(); |
1553
|
|
|
$background = array(); |
1554
|
|
|
$background_i = array(); |
1555
|
|
|
$border = array(); |
1556
|
|
|
$border_i = array(); |
1557
|
|
|
$fill = array(); |
1558
|
|
|
$fill_i = array(); |
1559
|
|
|
|
1560
|
|
|
$output = ''; |
1561
|
|
|
|
1562
|
|
|
// build rules into each type |
1563
|
|
|
foreach($selectors as $selector => $types){ |
1564
|
|
|
$selector = $compatibility ? ".bsui ".$selector : $selector; |
1565
|
|
|
$types = array_combine($types,$types); |
1566
|
|
|
if(isset($types['c'])){$color[] = $selector;} |
1567
|
|
|
if(isset($types['b'])){$background[] = $selector;} |
1568
|
|
|
if(isset($types['o'])){$border[] = $selector;} |
1569
|
|
|
if(isset($types['f'])){$fill[] = $selector;} |
1570
|
|
|
} |
1571
|
|
|
|
1572
|
|
|
// build rules into each type |
1573
|
|
|
foreach($important_selectors as $selector => $types){ |
1574
|
|
|
$selector = $compatibility ? ".bsui ".$selector : $selector; |
1575
|
|
|
$types = array_combine($types,$types); |
1576
|
|
|
if(isset($types['c'])){$color_i[] = $selector;} |
1577
|
|
|
if(isset($types['b'])){$background_i[] = $selector;} |
1578
|
|
|
if(isset($types['o'])){$border_i[] = $selector;} |
1579
|
|
|
if(isset($types['f'])){$fill_i[] = $selector;} |
1580
|
|
|
} |
1581
|
|
|
|
1582
|
|
|
// add any color rules |
1583
|
|
|
if(!empty($color)){ |
1584
|
|
|
$output .= implode(",",$color) . "{color: $color_code;} "; |
1585
|
|
|
} |
1586
|
|
|
if(!empty($color_i)){ |
1587
|
|
|
$output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
1588
|
|
|
} |
1589
|
|
|
|
1590
|
|
|
// add any background color rules |
1591
|
|
|
if(!empty($background)){ |
1592
|
|
|
$output .= implode(",",$background) . "{background-color: $color_code;} "; |
1593
|
|
|
} |
1594
|
|
|
if(!empty($background_i)){ |
1595
|
|
|
$output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
1596
|
|
|
} |
1597
|
|
|
|
1598
|
|
|
// add any border color rules |
1599
|
|
|
if(!empty($border)){ |
1600
|
|
|
$output .= implode(",",$border) . "{border-color: $color_code;} "; |
1601
|
|
|
} |
1602
|
|
|
if(!empty($border_i)){ |
1603
|
|
|
$output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
1604
|
|
|
} |
1605
|
|
|
|
1606
|
|
|
// add any fill color rules |
1607
|
|
|
if(!empty($fill)){ |
1608
|
|
|
$output .= implode(",",$fill) . "{fill: $color_code;} "; |
1609
|
|
|
} |
1610
|
|
|
if(!empty($fill_i)){ |
1611
|
|
|
$output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
1612
|
|
|
} |
1613
|
|
|
|
1614
|
|
|
|
1615
|
|
|
$prefix = $compatibility ? ".bsui " : ""; |
1616
|
|
|
|
1617
|
|
|
// darken |
1618
|
|
|
$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
|
|
|
1619
|
|
|
$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
1620
|
|
|
$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
1621
|
|
|
|
1622
|
|
|
// lighten |
1623
|
|
|
$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
|
|
|
1624
|
|
|
|
1625
|
|
|
// opacity see https://css-tricks.com/8-digit-hex-codes/ |
1626
|
|
|
$op_25 = $color_code."40"; // 25% opacity |
1627
|
|
|
|
1628
|
|
|
|
1629
|
|
|
// button states |
1630
|
|
|
$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
1631
|
|
|
$output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
1632
|
|
|
$output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
1633
|
|
|
$output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
1634
|
|
|
|
1635
|
|
|
|
1636
|
|
|
return $output; |
1637
|
|
|
} |
1638
|
|
|
|
1639
|
|
|
/** |
1640
|
|
|
* Increases or decreases the brightness of a color by a percentage of the current brightness. |
1641
|
|
|
* |
1642
|
|
|
* @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
1643
|
|
|
* @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
1644
|
|
|
* |
1645
|
|
|
* @return string |
1646
|
|
|
*/ |
1647
|
|
|
public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
1648
|
|
|
$hexCode = ltrim($hexCode, '#'); |
1649
|
|
|
|
1650
|
|
|
if (strlen($hexCode) == 3) { |
1651
|
|
|
$hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
1652
|
|
|
} |
1653
|
|
|
|
1654
|
|
|
$hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
|
|
|
1655
|
|
|
|
1656
|
|
|
foreach ($hexCode as & $color) { |
1657
|
|
|
$adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
1658
|
|
|
$adjustAmount = ceil($adjustableLimit * $adjustPercent); |
1659
|
|
|
|
1660
|
|
|
$color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
|
|
|
1661
|
|
|
} |
1662
|
|
|
|
1663
|
|
|
return '#' . implode($hexCode); |
1664
|
|
|
} |
1665
|
|
|
|
1666
|
|
|
/** |
1667
|
|
|
* Check if we should display examples. |
1668
|
|
|
*/ |
1669
|
|
|
public function maybe_show_examples(){ |
1670
|
|
|
if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
1671
|
|
|
echo "<head>"; |
1672
|
|
|
wp_head(); |
1673
|
|
|
echo "</head>"; |
1674
|
|
|
echo "<body>"; |
1675
|
|
|
echo $this->get_examples(); |
1676
|
|
|
echo "</body>"; |
1677
|
|
|
exit; |
|
|
|
|
1678
|
|
|
} |
1679
|
|
|
} |
1680
|
|
|
|
1681
|
|
|
/** |
1682
|
|
|
* Get developer examples. |
1683
|
|
|
* |
1684
|
|
|
* @return string |
1685
|
|
|
*/ |
1686
|
|
|
public function get_examples(){ |
1687
|
|
|
$output = ''; |
1688
|
|
|
|
1689
|
|
|
|
1690
|
|
|
// open form |
1691
|
|
|
$output .= "<form class='p-5 m-5 border rounded'>"; |
1692
|
|
|
|
1693
|
|
|
// input example |
1694
|
|
|
$output .= aui()->input(array( |
1695
|
|
|
'type' => 'text', |
1696
|
|
|
'id' => 'text-example', |
1697
|
|
|
'name' => 'text-example', |
1698
|
|
|
'placeholder' => 'text placeholder', |
1699
|
|
|
'title' => 'Text input example', |
1700
|
|
|
'value' => '', |
1701
|
|
|
'required' => false, |
1702
|
|
|
'help_text' => 'help text', |
1703
|
|
|
'label' => 'Text input example label' |
1704
|
|
|
)); |
1705
|
|
|
|
1706
|
|
|
// input example |
1707
|
|
|
$output .= aui()->input(array( |
1708
|
|
|
'type' => 'url', |
1709
|
|
|
'id' => 'text-example2', |
1710
|
|
|
'name' => 'text-example', |
1711
|
|
|
'placeholder' => 'url placeholder', |
1712
|
|
|
'title' => 'Text input example', |
1713
|
|
|
'value' => '', |
1714
|
|
|
'required' => false, |
1715
|
|
|
'help_text' => 'help text', |
1716
|
|
|
'label' => 'Text input example label' |
1717
|
|
|
)); |
1718
|
|
|
|
1719
|
|
|
// checkbox example |
1720
|
|
|
$output .= aui()->input(array( |
1721
|
|
|
'type' => 'checkbox', |
1722
|
|
|
'id' => 'checkbox-example', |
1723
|
|
|
'name' => 'checkbox-example', |
1724
|
|
|
'placeholder' => 'checkbox-example', |
1725
|
|
|
'title' => 'Checkbox example', |
1726
|
|
|
'value' => '1', |
1727
|
|
|
'checked' => true, |
1728
|
|
|
'required' => false, |
1729
|
|
|
'help_text' => 'help text', |
1730
|
|
|
'label' => 'Checkbox checked' |
1731
|
|
|
)); |
1732
|
|
|
|
1733
|
|
|
// checkbox example |
1734
|
|
|
$output .= aui()->input(array( |
1735
|
|
|
'type' => 'checkbox', |
1736
|
|
|
'id' => 'checkbox-example2', |
1737
|
|
|
'name' => 'checkbox-example2', |
1738
|
|
|
'placeholder' => 'checkbox-example', |
1739
|
|
|
'title' => 'Checkbox example', |
1740
|
|
|
'value' => '1', |
1741
|
|
|
'checked' => false, |
1742
|
|
|
'required' => false, |
1743
|
|
|
'help_text' => 'help text', |
1744
|
|
|
'label' => 'Checkbox un-checked' |
1745
|
|
|
)); |
1746
|
|
|
|
1747
|
|
|
// switch example |
1748
|
|
|
$output .= aui()->input(array( |
1749
|
|
|
'type' => 'checkbox', |
1750
|
|
|
'id' => 'switch-example', |
1751
|
|
|
'name' => 'switch-example', |
1752
|
|
|
'placeholder' => 'checkbox-example', |
1753
|
|
|
'title' => 'Switch example', |
1754
|
|
|
'value' => '1', |
1755
|
|
|
'checked' => true, |
1756
|
|
|
'switch' => true, |
1757
|
|
|
'required' => false, |
1758
|
|
|
'help_text' => 'help text', |
1759
|
|
|
'label' => 'Switch on' |
1760
|
|
|
)); |
1761
|
|
|
|
1762
|
|
|
// switch example |
1763
|
|
|
$output .= aui()->input(array( |
1764
|
|
|
'type' => 'checkbox', |
1765
|
|
|
'id' => 'switch-example2', |
1766
|
|
|
'name' => 'switch-example2', |
1767
|
|
|
'placeholder' => 'checkbox-example', |
1768
|
|
|
'title' => 'Switch example', |
1769
|
|
|
'value' => '1', |
1770
|
|
|
'checked' => false, |
1771
|
|
|
'switch' => true, |
1772
|
|
|
'required' => false, |
1773
|
|
|
'help_text' => 'help text', |
1774
|
|
|
'label' => 'Switch off' |
1775
|
|
|
)); |
1776
|
|
|
|
1777
|
|
|
// close form |
1778
|
|
|
$output .= "</form>"; |
1779
|
|
|
|
1780
|
|
|
return $output; |
1781
|
|
|
} |
1782
|
|
|
|
1783
|
|
|
/** |
1784
|
|
|
* Calendar params. |
1785
|
|
|
* |
1786
|
|
|
* @since 0.1.44 |
1787
|
|
|
* |
1788
|
|
|
* @return array Calendar params. |
1789
|
|
|
*/ |
1790
|
|
|
public static function calendar_params() { |
1791
|
|
|
$params = array( |
1792
|
|
|
'month_long_1' => __( 'January', 'aui' ), |
1793
|
|
|
'month_long_2' => __( 'February', 'aui' ), |
1794
|
|
|
'month_long_3' => __( 'March', 'aui' ), |
1795
|
|
|
'month_long_4' => __( 'April', 'aui' ), |
1796
|
|
|
'month_long_5' => __( 'May', 'aui' ), |
1797
|
|
|
'month_long_6' => __( 'June', 'aui' ), |
1798
|
|
|
'month_long_7' => __( 'July', 'aui' ), |
1799
|
|
|
'month_long_8' => __( 'August', 'aui' ), |
1800
|
|
|
'month_long_9' => __( 'September', 'aui' ), |
1801
|
|
|
'month_long_10' => __( 'October', 'aui' ), |
1802
|
|
|
'month_long_11' => __( 'November', 'aui' ), |
1803
|
|
|
'month_long_12' => __( 'December', 'aui' ), |
1804
|
|
|
'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
1805
|
|
|
'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
1806
|
|
|
'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
1807
|
|
|
'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
1808
|
|
|
'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
1809
|
|
|
'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
1810
|
|
|
'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
1811
|
|
|
'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
1812
|
|
|
'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
1813
|
|
|
'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
1814
|
|
|
'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
1815
|
|
|
'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
1816
|
|
|
'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
1817
|
|
|
'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
1818
|
|
|
'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
1819
|
|
|
'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
1820
|
|
|
'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
1821
|
|
|
'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
1822
|
|
|
'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
1823
|
|
|
'day_s2_1' => __( 'Su', 'aui' ), |
1824
|
|
|
'day_s2_2' => __( 'Mo', 'aui' ), |
1825
|
|
|
'day_s2_3' => __( 'Tu', 'aui' ), |
1826
|
|
|
'day_s2_4' => __( 'We', 'aui' ), |
1827
|
|
|
'day_s2_5' => __( 'Th', 'aui' ), |
1828
|
|
|
'day_s2_6' => __( 'Fr', 'aui' ), |
1829
|
|
|
'day_s2_7' => __( 'Sa', 'aui' ), |
1830
|
|
|
'day_s3_1' => __( 'Sun', 'aui' ), |
1831
|
|
|
'day_s3_2' => __( 'Mon', 'aui' ), |
1832
|
|
|
'day_s3_3' => __( 'Tue', 'aui' ), |
1833
|
|
|
'day_s3_4' => __( 'Wed', 'aui' ), |
1834
|
|
|
'day_s3_5' => __( 'Thu', 'aui' ), |
1835
|
|
|
'day_s3_6' => __( 'Fri', 'aui' ), |
1836
|
|
|
'day_s3_7' => __( 'Sat', 'aui' ), |
1837
|
|
|
'day_s5_1' => __( 'Sunday', 'aui' ), |
1838
|
|
|
'day_s5_2' => __( 'Monday', 'aui' ), |
1839
|
|
|
'day_s5_3' => __( 'Tuesday', 'aui' ), |
1840
|
|
|
'day_s5_4' => __( 'Wednesday', 'aui' ), |
1841
|
|
|
'day_s5_5' => __( 'Thursday', 'aui' ), |
1842
|
|
|
'day_s5_6' => __( 'Friday', 'aui' ), |
1843
|
|
|
'day_s5_7' => __( 'Saturday', 'aui' ), |
1844
|
|
|
'am_lower' => __( 'am', 'aui' ), |
1845
|
|
|
'pm_lower' => __( 'pm', 'aui' ), |
1846
|
|
|
'am_upper' => __( 'AM', 'aui' ), |
1847
|
|
|
'pm_upper' => __( 'PM', 'aui' ), |
1848
|
|
|
'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
1849
|
|
|
'time_24hr' => false, |
1850
|
|
|
'year' => __( 'Year', 'aui' ), |
1851
|
|
|
'hour' => __( 'Hour', 'aui' ), |
1852
|
|
|
'minute' => __( 'Minute', 'aui' ), |
1853
|
|
|
'weekAbbreviation' => __( 'Wk', 'aui' ), |
1854
|
|
|
'rangeSeparator' => __( ' to ', 'aui' ), |
1855
|
|
|
'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
1856
|
|
|
'toggleTitle' => __( 'Click to toggle', 'aui' ) |
1857
|
|
|
); |
1858
|
|
|
|
1859
|
|
|
return apply_filters( 'ayecode_ui_calendar_params', $params ); |
1860
|
|
|
} |
1861
|
|
|
|
1862
|
|
|
/** |
1863
|
|
|
* Flatpickr calendar localize. |
1864
|
|
|
* |
1865
|
|
|
* @since 0.1.44 |
1866
|
|
|
* |
1867
|
|
|
* @return string Calendar locale. |
1868
|
|
|
*/ |
1869
|
|
|
public static function flatpickr_locale() { |
1870
|
|
|
$params = self::calendar_params(); |
1871
|
|
|
|
1872
|
|
|
if ( is_string( $params ) ) { |
|
|
|
|
1873
|
|
|
$params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
1874
|
|
|
} else { |
1875
|
|
|
foreach ( (array) $params as $key => $value ) { |
1876
|
|
|
if ( ! is_scalar( $value ) ) { |
1877
|
|
|
continue; |
1878
|
|
|
} |
1879
|
|
|
|
1880
|
|
|
$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
1881
|
|
|
} |
1882
|
|
|
} |
1883
|
|
|
|
1884
|
|
|
$day_s3 = array(); |
1885
|
|
|
$day_s5 = array(); |
1886
|
|
|
|
1887
|
|
|
for ( $i = 1; $i <= 7; $i ++ ) { |
1888
|
|
|
$day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
1889
|
|
|
$day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
1890
|
|
|
} |
1891
|
|
|
|
1892
|
|
|
$month_s = array(); |
1893
|
|
|
$month_long = array(); |
1894
|
|
|
|
1895
|
|
|
for ( $i = 1; $i <= 12; $i ++ ) { |
1896
|
|
|
$month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
1897
|
|
|
$month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
1898
|
|
|
} |
1899
|
|
|
|
1900
|
|
|
ob_start(); |
1901
|
|
|
if ( 0 ) { ?><script><?php } ?> |
1902
|
|
|
{ |
1903
|
|
|
weekdays: { |
1904
|
|
|
shorthand: ['<?php echo implode( "','", $day_s3 ); ?>'], |
1905
|
|
|
longhand: ['<?php echo implode( "','", $day_s5 ); ?>'], |
1906
|
|
|
}, |
1907
|
|
|
months: { |
1908
|
|
|
shorthand: ['<?php echo implode( "','", $month_s ); ?>'], |
1909
|
|
|
longhand: ['<?php echo implode( "','", $month_long ); ?>'], |
1910
|
|
|
}, |
1911
|
|
|
daysInMonth: [31,28,31,30,31,30,31,31,30,31,30,31], |
1912
|
|
|
firstDayOfWeek: <?php echo (int) $params[ 'firstDayOfWeek' ]; ?>, |
1913
|
|
|
ordinal: function (nth) { |
1914
|
|
|
var s = nth % 100; |
1915
|
|
|
if (s > 3 && s < 21) |
1916
|
|
|
return "th"; |
1917
|
|
|
switch (s % 10) { |
1918
|
|
|
case 1: |
1919
|
|
|
return "st"; |
1920
|
|
|
case 2: |
1921
|
|
|
return "nd"; |
1922
|
|
|
case 3: |
1923
|
|
|
return "rd"; |
1924
|
|
|
default: |
1925
|
|
|
return "th"; |
1926
|
|
|
} |
1927
|
|
|
}, |
1928
|
|
|
rangeSeparator: '<?php echo addslashes( $params[ 'rangeSeparator' ] ); ?>', |
1929
|
|
|
weekAbbreviation: '<?php echo addslashes( $params[ 'weekAbbreviation' ] ); ?>', |
1930
|
|
|
scrollTitle: '<?php echo addslashes( $params[ 'scrollTitle' ] ); ?>', |
1931
|
|
|
toggleTitle: '<?php echo addslashes( $params[ 'toggleTitle' ] ); ?>', |
1932
|
|
|
amPM: ['<?php echo addslashes( $params[ 'am_upper' ] ); ?>','<?php echo addslashes( $params[ 'pm_upper' ] ); ?>'], |
1933
|
|
|
yearAriaLabel: '<?php echo addslashes( $params[ 'year' ] ); ?>', |
1934
|
|
|
hourAriaLabel: '<?php echo addslashes( $params[ 'hour' ] ); ?>', |
1935
|
|
|
minuteAriaLabel: '<?php echo addslashes( $params[ 'minute' ] ); ?>', |
1936
|
|
|
time_24hr: <?php echo ( $params[ 'time_24hr' ] ? 'true' : 'false' ) ; ?> |
1937
|
|
|
} |
1938
|
|
|
<?php if ( 0 ) { ?></script><?php } ?> |
1939
|
|
|
<?php |
1940
|
|
|
$locale = ob_get_clean(); |
1941
|
|
|
|
1942
|
|
|
return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
1943
|
|
|
} |
1944
|
|
|
|
1945
|
|
|
/** |
1946
|
|
|
* Select2 JS params. |
1947
|
|
|
* |
1948
|
|
|
* @since 0.1.44 |
1949
|
|
|
* |
1950
|
|
|
* @return array Select2 JS params. |
1951
|
|
|
*/ |
1952
|
|
|
public static function select2_params() { |
1953
|
|
|
$params = array( |
1954
|
|
|
'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
1955
|
|
|
'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
1956
|
|
|
'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
1957
|
|
|
'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
1958
|
|
|
'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
1959
|
|
|
'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
1960
|
|
|
'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
1961
|
|
|
'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
1962
|
|
|
'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
1963
|
|
|
'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
1964
|
|
|
'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
1965
|
|
|
); |
1966
|
|
|
|
1967
|
|
|
return apply_filters( 'ayecode_ui_select2_params', $params ); |
1968
|
|
|
} |
1969
|
|
|
|
1970
|
|
|
/** |
1971
|
|
|
* Select2 JS localize. |
1972
|
|
|
* |
1973
|
|
|
* @since 0.1.44 |
1974
|
|
|
* |
1975
|
|
|
* @return string Select2 JS locale. |
1976
|
|
|
*/ |
1977
|
|
|
public static function select2_locale() { |
1978
|
|
|
$params = self::select2_params(); |
1979
|
|
|
|
1980
|
|
|
foreach ( (array) $params as $key => $value ) { |
1981
|
|
|
if ( ! is_scalar( $value ) ) { |
1982
|
|
|
continue; |
1983
|
|
|
} |
1984
|
|
|
|
1985
|
|
|
$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
1986
|
|
|
} |
1987
|
|
|
|
1988
|
|
|
$locale = json_encode( $params ); |
1989
|
|
|
|
1990
|
|
|
return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
1991
|
|
|
} |
1992
|
|
|
|
1993
|
|
|
/** |
1994
|
|
|
* Time ago JS localize. |
1995
|
|
|
* |
1996
|
|
|
* @since 0.1.47 |
1997
|
|
|
* |
1998
|
|
|
* @return string Time ago JS locale. |
1999
|
|
|
*/ |
2000
|
|
|
public static function timeago_locale() { |
2001
|
|
|
$params = array( |
2002
|
|
|
'prefix_ago' => '', |
2003
|
|
|
'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
2004
|
|
|
'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
2005
|
|
|
'suffix_after' => '', |
2006
|
|
|
'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
2007
|
|
|
'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
2008
|
|
|
'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
2009
|
|
|
'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
2010
|
|
|
'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
2011
|
|
|
'day' => _x( 'a day', 'time ago', 'aui' ), |
2012
|
|
|
'days' => _x( '%d days', 'time ago', 'aui' ), |
2013
|
|
|
'month' => _x( 'about a month', 'time ago', 'aui' ), |
2014
|
|
|
'months' => _x( '%d months', 'time ago', 'aui' ), |
2015
|
|
|
'year' => _x( 'about a year', 'time ago', 'aui' ), |
2016
|
|
|
'years' => _x( '%d years', 'time ago', 'aui' ), |
2017
|
|
|
); |
2018
|
|
|
|
2019
|
|
|
$params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
2020
|
|
|
|
2021
|
|
|
foreach ( (array) $params as $key => $value ) { |
2022
|
|
|
if ( ! is_scalar( $value ) ) { |
2023
|
|
|
continue; |
2024
|
|
|
} |
2025
|
|
|
|
2026
|
|
|
$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
2027
|
|
|
} |
2028
|
|
|
|
2029
|
|
|
$locale = json_encode( $params ); |
2030
|
|
|
|
2031
|
|
|
return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
2032
|
|
|
} |
2033
|
|
|
|
2034
|
|
|
/** |
2035
|
|
|
* JavaScript Minifier |
2036
|
|
|
* |
2037
|
|
|
* @param $input |
2038
|
|
|
* |
2039
|
|
|
* @return mixed |
2040
|
|
|
*/ |
2041
|
|
|
public static function minify_js($input) { |
2042
|
|
|
if(trim($input) === "") return $input; |
2043
|
|
|
return preg_replace( |
2044
|
|
|
array( |
2045
|
|
|
// Remove comment(s) |
2046
|
|
|
'#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
2047
|
|
|
// Remove white-space(s) outside the string and regex |
2048
|
|
|
'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
2049
|
|
|
// Remove the last semicolon |
2050
|
|
|
'#;+\}#', |
2051
|
|
|
// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
2052
|
|
|
'#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
2053
|
|
|
// --ibid. From `foo['bar']` to `foo.bar` |
2054
|
|
|
'#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
2055
|
|
|
), |
2056
|
|
|
array( |
2057
|
|
|
'$1', |
2058
|
|
|
'$1$2', |
2059
|
|
|
'}', |
2060
|
|
|
'$1$3', |
2061
|
|
|
'$1.$3' |
2062
|
|
|
), |
2063
|
|
|
$input); |
2064
|
|
|
} |
2065
|
|
|
|
2066
|
|
|
/** |
2067
|
|
|
* Minify CSS |
2068
|
|
|
* |
2069
|
|
|
* @param $input |
2070
|
|
|
* |
2071
|
|
|
* @return mixed |
2072
|
|
|
*/ |
2073
|
|
|
public static function minify_css($input) { |
2074
|
|
|
if(trim($input) === "") return $input; |
2075
|
|
|
return preg_replace( |
2076
|
|
|
array( |
2077
|
|
|
// Remove comment(s) |
2078
|
|
|
'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
2079
|
|
|
// Remove unused white-space(s) |
2080
|
|
|
'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
2081
|
|
|
// Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
2082
|
|
|
'#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
2083
|
|
|
// Replace `:0 0 0 0` with `:0` |
2084
|
|
|
'#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
2085
|
|
|
// Replace `background-position:0` with `background-position:0 0` |
2086
|
|
|
'#(background-position):0(?=[;\}])#si', |
2087
|
|
|
// Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
2088
|
|
|
'#(?<=[\s:,\-])0+\.(\d+)#s', |
2089
|
|
|
// Minify string value |
2090
|
|
|
'#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
2091
|
|
|
'#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
2092
|
|
|
// Minify HEX color code |
2093
|
|
|
'#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
2094
|
|
|
// Replace `(border|outline):none` with `(border|outline):0` |
2095
|
|
|
'#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
2096
|
|
|
// Remove empty selector(s) |
2097
|
|
|
'#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
2098
|
|
|
), |
2099
|
|
|
array( |
2100
|
|
|
'$1', |
2101
|
|
|
'$1$2$3$4$5$6$7', |
2102
|
|
|
'$1', |
2103
|
|
|
':0', |
2104
|
|
|
'$1:0 0', |
2105
|
|
|
'.$1', |
2106
|
|
|
'$1$3', |
2107
|
|
|
'$1$2$4$5', |
2108
|
|
|
'$1$2$3', |
2109
|
|
|
'$1:0', |
2110
|
|
|
'$1$2' |
2111
|
|
|
), |
2112
|
|
|
$input); |
2113
|
|
|
} |
2114
|
|
|
|
2115
|
|
|
/** |
2116
|
|
|
* Get the conditional fields JavaScript. |
2117
|
|
|
* |
2118
|
|
|
* @return mixed |
2119
|
|
|
*/ |
2120
|
|
|
public function conditional_fields_js() { |
2121
|
|
|
ob_start(); |
2122
|
|
|
?> |
2123
|
|
|
<script> |
2124
|
|
|
/** |
2125
|
|
|
* Conditional Fields |
2126
|
|
|
*/ |
2127
|
|
|
var aui_cf_field_rules = [], aui_cf_field_key_rules = {}, aui_cf_field_default_values = {}; |
2128
|
|
|
|
2129
|
|
|
jQuery(function($) { |
2130
|
|
|
aui_cf_field_init_rules($); |
2131
|
|
|
}); |
2132
|
|
|
|
2133
|
|
|
/** |
2134
|
|
|
* Conditional fields init. |
2135
|
|
|
*/ |
2136
|
|
|
function aui_cf_field_init_rules($) { |
2137
|
|
|
if (!$('[data-has-rule]').length) { |
2138
|
|
|
return; |
2139
|
|
|
} |
2140
|
|
|
$('input.select2-search__field').attr('data-ignore-rule',''); |
2141
|
|
|
$('[data-rule-key]').on('change keypress keyup gdclear', 'input, textarea', function() { |
2142
|
|
|
if (!$(this).hasClass('select2-search__field')) { |
2143
|
|
|
aui_cf_field_apply_rules($(this)); |
2144
|
|
|
} |
2145
|
|
|
}); |
2146
|
|
|
|
2147
|
|
|
$('[data-rule-key]').on('change change.select2 gdclear', 'select', function() { |
2148
|
|
|
aui_cf_field_apply_rules($(this)); |
2149
|
|
|
}); |
2150
|
|
|
|
2151
|
|
|
aui_cf_field_setup_rules($); |
2152
|
|
|
} |
2153
|
|
|
|
2154
|
|
|
/** |
2155
|
|
|
* Setup conditional field rules. |
2156
|
|
|
*/ |
2157
|
|
|
function aui_cf_field_setup_rules($) { |
2158
|
|
|
var aui_cf_field_keys = []; |
2159
|
|
|
|
2160
|
|
|
$('[data-rule-key]').each(function() { |
2161
|
|
|
var key = $(this).data('rule-key'), irule = parseInt($(this).data('has-rule')); |
2162
|
|
|
if (key) { |
2163
|
|
|
aui_cf_field_keys.push(key); |
2164
|
|
|
} |
2165
|
|
|
|
2166
|
|
|
var parse_conds = {}; |
2167
|
|
|
if ($(this).data('rule-fie-0')) { |
2168
|
|
|
$(this).find('input,select,textarea').each(function() { |
2169
|
|
|
if ($(this).attr('required') || $(this).attr('oninvalid')) { |
2170
|
|
|
$(this).addClass('aui-cf-req'); |
2171
|
|
|
if ($(this).attr('required')) { |
2172
|
|
|
$(this).attr('data-rule-req', true); |
2173
|
|
|
} |
2174
|
|
|
if ($(this).attr('oninvalid')) { |
2175
|
|
|
$(this).attr('data-rule-oninvalid', $(this).attr('oninvalid')); |
2176
|
|
|
} |
2177
|
|
|
} |
2178
|
|
|
}); |
2179
|
|
|
for (var i = 0; i < irule; i++) { |
2180
|
|
|
var field = $(this).data('rule-fie-' + i); |
2181
|
|
|
if (typeof parse_conds[i] === 'undefined') { |
2182
|
|
|
parse_conds[i] = {}; |
2183
|
|
|
} |
2184
|
|
|
parse_conds[i]['action'] = $(this).data('rule-act-' + i); |
2185
|
|
|
parse_conds[i]['field'] = $(this).data('rule-fie-' + i); |
2186
|
|
|
parse_conds[i]['condition'] = $(this).data('rule-con-' + i); |
2187
|
|
|
parse_conds[i]['value'] = $(this).data('rule-val-' + i); |
2188
|
|
|
} |
2189
|
|
|
|
2190
|
|
|
$.each(parse_conds, function(j, data) { |
2191
|
|
|
var item = { |
2192
|
|
|
'field': { |
2193
|
|
|
key: key, |
2194
|
|
|
action: data.action, |
2195
|
|
|
field: data.field, |
2196
|
|
|
condition: data.condition, |
2197
|
|
|
value: data.value, |
2198
|
|
|
rule: { |
2199
|
|
|
key: key, |
2200
|
|
|
action: data.action, |
2201
|
|
|
condition: data.condition, |
2202
|
|
|
value: data.value |
2203
|
|
|
} |
2204
|
|
|
} |
2205
|
|
|
}; |
2206
|
|
|
aui_cf_field_rules.push(item); |
2207
|
|
|
}); |
2208
|
|
|
} |
2209
|
|
|
aui_cf_field_default_values[$(this).data('rule-key')] = aui_cf_field_get_default_value($(this)); |
2210
|
|
|
}); |
2211
|
|
|
|
2212
|
|
|
$.each(aui_cf_field_keys, function(i, fkey) { |
2213
|
|
|
aui_cf_field_key_rules[fkey] = aui_cf_field_get_children(fkey); |
2214
|
|
|
}); |
2215
|
|
|
|
2216
|
|
|
$('[data-rule-key]:visible').each(function() { |
2217
|
|
|
var conds = aui_cf_field_key_rules[$(this).data('rule-key')]; |
2218
|
|
|
if (conds && conds.length) { |
2219
|
|
|
var $main_el = $(this), el = aui_cf_field_get_element($main_el); |
2220
|
|
|
if ($(el).length) { |
2221
|
|
|
aui_cf_field_apply_rules($(el)); |
2222
|
|
|
} |
2223
|
|
|
} |
2224
|
|
|
}); |
2225
|
|
|
} |
2226
|
|
|
|
2227
|
|
|
/** |
2228
|
|
|
* Apply conditional field rules. |
2229
|
|
|
*/ |
2230
|
|
|
function aui_cf_field_apply_rules($el) { |
2231
|
|
|
if (!$el.parents('[data-rule-key]').length) { |
2232
|
|
|
return; |
2233
|
|
|
} |
2234
|
|
|
|
2235
|
|
|
if ($el.data('no-rule')) { |
2236
|
|
|
return; |
2237
|
|
|
} |
2238
|
|
|
|
2239
|
|
|
var key = $el.parents('[data-rule-key]').data('rule-key'); |
2240
|
|
|
var conditions = aui_cf_field_key_rules[key]; |
2241
|
|
|
if (typeof conditions === 'undefined') { |
2242
|
|
|
return; |
2243
|
|
|
} |
2244
|
|
|
var field_type = aui_cf_field_get_type($el.parents('[data-rule-key]')), current_value = aui_cf_field_get_value($el); |
2245
|
|
|
var $keys = {}, $keys_values = {}, $key_rules = {}; |
2246
|
|
|
|
2247
|
|
|
jQuery.each(conditions, function(index, condition) { |
2248
|
|
|
if (typeof $keys_values[condition.key] == 'undefined') { |
2249
|
|
|
$keys_values[condition.key] = []; |
2250
|
|
|
$key_rules[condition.key] = {} |
2251
|
|
|
} |
2252
|
|
|
|
2253
|
|
|
$keys_values[condition.key].push(condition.value); |
2254
|
|
|
$key_rules[condition.key] = condition; |
2255
|
|
|
}); |
2256
|
|
|
|
2257
|
|
|
jQuery.each(conditions, function(index, condition) { |
2258
|
|
|
if (typeof $keys[condition.key] == 'undefined') { |
2259
|
|
|
$keys[condition.key] = {}; |
2260
|
|
|
} |
2261
|
|
|
|
2262
|
|
|
if (condition.condition === 'empty') { |
2263
|
|
|
var field_value = Array.isArray(current_value) ? current_value.join('') : current_value; |
2264
|
|
|
if (!field_value || field_value === '') { |
2265
|
|
|
$keys[condition.key][index] = true; |
2266
|
|
|
} else { |
2267
|
|
|
$keys[condition.key][index] = false; |
2268
|
|
|
} |
2269
|
|
|
} else if (condition.condition === 'not empty') { |
2270
|
|
|
var field_value = Array.isArray(current_value) ? current_value.join('') : current_value; |
2271
|
|
|
if (field_value && field_value !== '') { |
2272
|
|
|
$keys[condition.key][index] = true; |
2273
|
|
|
} else { |
2274
|
|
|
$keys[condition.key][index] = false; |
2275
|
|
|
} |
2276
|
|
|
} else if (condition.condition === 'equals to') { |
2277
|
|
|
var field_value = (Array.isArray(current_value) && current_value.length === 1) ? current_value[0] : current_value; |
2278
|
|
|
if (((condition.value && condition.value == condition.value) || (condition.value === field_value)) && aui_cf_field_in_array(field_value, $keys_values[condition.key])) { |
2279
|
|
|
$keys[condition.key][index] = true; |
2280
|
|
|
} else { |
2281
|
|
|
$keys[condition.key][index] = false; |
2282
|
|
|
} |
2283
|
|
|
} else if (condition.condition === 'not equals') { |
2284
|
|
|
var field_value = (Array.isArray(current_value) && current_value.length === 1) ? current_value[0] : current_value; |
2285
|
|
|
if (jQuery.isNumeric(condition.value) && parseInt(field_value) !== parseInt(condition.value) && field_value && !aui_cf_field_in_array(field_value, $keys_values[condition.key])) { |
2286
|
|
|
$keys[condition.key][index] = true; |
2287
|
|
|
} else if (condition.value != field_value && !aui_cf_field_in_array(field_value, $keys_values[condition.key])) { |
2288
|
|
|
$keys[condition.key][index] = true; |
2289
|
|
|
} else { |
2290
|
|
|
$keys[condition.key][index] = false; |
2291
|
|
|
} |
2292
|
|
|
} else if (condition.condition === 'greater than') { |
2293
|
|
|
var field_value = (Array.isArray(current_value) && current_value.length === 1) ? current_value[0] : current_value; |
2294
|
|
|
if (jQuery.isNumeric(condition.value) && parseInt(field_value) > parseInt(condition.value)) { |
2295
|
|
|
$keys[condition.key][index] = true; |
2296
|
|
|
} else { |
2297
|
|
|
$keys[condition.key][index] = false; |
2298
|
|
|
} |
2299
|
|
|
} else if (condition.condition === 'less than') { |
2300
|
|
|
var field_value = (Array.isArray(current_value) && current_value.length === 1) ? current_value[0] : current_value; |
2301
|
|
|
if (jQuery.isNumeric(condition.value) && parseInt(field_value) < parseInt(condition.value)) { |
2302
|
|
|
$keys[condition.key][index] = true; |
2303
|
|
|
} else { |
2304
|
|
|
$keys[condition.key][index] = false; |
2305
|
|
|
} |
2306
|
|
|
} else if (condition.condition === 'contains') { |
2307
|
|
|
switch (field_type) { |
2308
|
|
|
case 'multiselect': |
2309
|
|
|
if (current_value && ((!Array.isArray(current_value) && current_value.indexOf(condition.value) >= 0) || (Array.isArray(current_value) && aui_cf_field_in_array(condition.value, current_value)))) { |
2310
|
|
|
$keys[condition.key][index] = true; |
2311
|
|
|
} else { |
2312
|
|
|
$keys[condition.key][index] = false; |
2313
|
|
|
} |
2314
|
|
|
break; |
2315
|
|
|
case 'checkbox': |
2316
|
|
|
if (current_value && ((!Array.isArray(current_value) && current_value.indexOf(condition.value) >= 0) || (Array.isArray(current_value) && aui_cf_field_in_array(condition.value, current_value)))) { |
2317
|
|
|
$keys[condition.key][index] = true; |
2318
|
|
|
} else { |
2319
|
|
|
$keys[condition.key][index] = false; |
2320
|
|
|
} |
2321
|
|
|
break; |
2322
|
|
|
default: |
2323
|
|
|
if (typeof $keys[condition.key][index] === 'undefined') { |
2324
|
|
|
if (current_value && current_value.indexOf(condition.value) >= 0 && aui_cf_field_in_array(current_value, $keys_values[condition.key], false, true)) { |
2325
|
|
|
$keys[condition.key][index] = true; |
2326
|
|
|
} else { |
2327
|
|
|
$keys[condition.key][index] = false; |
2328
|
|
|
} |
2329
|
|
|
} |
2330
|
|
|
break; |
2331
|
|
|
} |
2332
|
|
|
} |
2333
|
|
|
}); |
2334
|
|
|
|
2335
|
|
|
jQuery.each($keys, function(index, field) { |
2336
|
|
|
if (aui_cf_field_in_array(true, field)) { |
2337
|
|
|
aui_cf_field_apply_action($el, $key_rules[index], true); |
2338
|
|
|
} else { |
2339
|
|
|
aui_cf_field_apply_action($el, $key_rules[index], false); |
2340
|
|
|
} |
2341
|
|
|
}); |
2342
|
|
|
|
2343
|
|
|
/* Trigger field change */ |
2344
|
|
|
if ($keys.length) { |
2345
|
|
|
$el.trigger('aui_cf_field_on_change'); |
2346
|
|
|
} |
2347
|
|
|
} |
2348
|
|
|
|
2349
|
|
|
/** |
2350
|
|
|
* Get the field element. |
2351
|
|
|
*/ |
2352
|
|
|
function aui_cf_field_get_element($el) { |
2353
|
|
|
var el = $el.find('input:not("[data-ignore-rule]"),textarea,select'), type = aui_cf_field_get_type($el); |
2354
|
|
|
if (type && window._aui_cf_field_elements && typeof window._aui_cf_field_elements == 'object' && typeof window._aui_cf_field_elements[type] != 'undefined') { |
2355
|
|
|
el = window._aui_cf_field_elements[type]; |
2356
|
|
|
} |
2357
|
|
|
return el; |
2358
|
|
|
} |
2359
|
|
|
|
2360
|
|
|
/** |
2361
|
|
|
* Get the field type. |
2362
|
|
|
*/ |
2363
|
|
|
function aui_cf_field_get_type($el) { |
2364
|
|
|
return $el.data('rule-type'); |
2365
|
|
|
} |
2366
|
|
|
|
2367
|
|
|
/** |
2368
|
|
|
* Get the field value. |
2369
|
|
|
*/ |
2370
|
|
|
function aui_cf_field_get_value($el) { |
2371
|
|
|
var current_value = $el.val(); |
2372
|
|
|
|
2373
|
|
|
if ($el.is(':checkbox')) { |
2374
|
|
|
current_value = ''; |
2375
|
|
|
if ($el.parents('[data-rule-key]').find('input:checked').length > 1) { |
2376
|
|
|
$el.parents('[data-rule-key]').find('input:checked').each(function() { |
2377
|
|
|
current_value = current_value + jQuery(this).val() + ' '; |
2378
|
|
|
}); |
2379
|
|
|
} else { |
2380
|
|
|
if ($el.parents('[data-rule-key]').find('input:checked').length >= 1) { |
2381
|
|
|
current_value = $el.parents('[data-rule-key]').find('input:checked').val(); |
2382
|
|
|
} |
2383
|
|
|
} |
2384
|
|
|
} |
2385
|
|
|
|
2386
|
|
|
if ($el.is(':radio')) { |
2387
|
|
|
current_value = $el.parents('[data-rule-key]').find('input[type=radio]:checked').val(); |
2388
|
|
|
} |
2389
|
|
|
|
2390
|
|
|
return current_value; |
2391
|
|
|
} |
2392
|
|
|
|
2393
|
|
|
/** |
2394
|
|
|
* Get the field default value. |
2395
|
|
|
*/ |
2396
|
|
|
function aui_cf_field_get_default_value($el) { |
2397
|
|
|
var value = '', type = aui_cf_field_get_type($el); |
2398
|
|
|
|
2399
|
|
|
switch (type) { |
2400
|
|
|
case 'text': |
2401
|
|
|
case 'number': |
2402
|
|
|
case 'date': |
2403
|
|
|
case 'textarea': |
2404
|
|
|
case 'select': |
2405
|
|
|
value = $el.find('input:text,input[type="number"],textarea,select').val(); |
2406
|
|
|
break; |
2407
|
|
|
case 'phone': |
2408
|
|
|
case 'email': |
2409
|
|
|
case 'color': |
2410
|
|
|
case 'url': |
2411
|
|
|
case 'hidden': |
2412
|
|
|
case 'password': |
2413
|
|
|
case 'file': |
2414
|
|
|
value = $el.find('input[type="' + type + '"]').val(); |
2415
|
|
|
break; |
2416
|
|
|
case 'multiselect': |
2417
|
|
|
value = $el.find('select').val(); |
2418
|
|
|
break; |
2419
|
|
|
case 'radio': |
2420
|
|
|
if ($el.find('input[type="radio"]:checked').length >= 1) { |
2421
|
|
|
value = $el.find('input[type="radio"]:checked').val(); |
2422
|
|
|
} |
2423
|
|
|
break; |
2424
|
|
|
case 'checkbox': |
2425
|
|
|
if ($el.find('input[type="checkbox"]:checked').length >= 1) { |
2426
|
|
|
if ($el.find('input[type="checkbox"]:checked').length > 1) { |
2427
|
|
|
var values = []; |
2428
|
|
|
values.push(value); |
2429
|
|
|
$el.find('input[type="checkbox"]:checked').each(function() { |
2430
|
|
|
values.push(jQuery(this).val()); |
2431
|
|
|
}); |
2432
|
|
|
value = values; |
2433
|
|
|
} else { |
2434
|
|
|
value = $el.find('input[type="checkbox"]:checked').val(); |
2435
|
|
|
} |
2436
|
|
|
} |
2437
|
|
|
break; |
2438
|
|
|
default: |
2439
|
|
|
if (window._aui_cf_field_default_values && typeof window._aui_cf_field_default_values == 'object' && typeof window._aui_cf_field_default_values[type] != 'undefined') { |
2440
|
|
|
value = window._aui_cf_field_default_values[type]; |
2441
|
|
|
} |
2442
|
|
|
break; |
2443
|
|
|
} |
2444
|
|
|
return { |
2445
|
|
|
type: type, |
2446
|
|
|
value: value |
2447
|
|
|
}; |
2448
|
|
|
} |
2449
|
|
|
|
2450
|
|
|
/** |
2451
|
|
|
* Reset field default value. |
2452
|
|
|
*/ |
2453
|
|
|
function aui_cf_field_reset_default_value($el) { |
2454
|
|
|
var type = aui_cf_field_get_type($el), key = $el.data('rule-key'), field = aui_cf_field_default_values[key]; |
2455
|
|
|
|
2456
|
|
|
switch (type) { |
2457
|
|
|
case 'text': |
2458
|
|
|
case 'number': |
2459
|
|
|
case 'date': |
2460
|
|
|
case 'textarea': |
2461
|
|
|
$el.find('input:text,input[type="number"],textarea').val(field.value); |
2462
|
|
|
break; |
2463
|
|
|
case 'phone': |
2464
|
|
|
case 'email': |
2465
|
|
|
case 'color': |
2466
|
|
|
case 'url': |
2467
|
|
|
case 'hidden': |
2468
|
|
|
case 'password': |
2469
|
|
|
case 'file': |
2470
|
|
|
$el.find('input[type="' + type + '"]').val(field.value); |
2471
|
|
|
break; |
2472
|
|
|
case 'select': |
2473
|
|
|
$el.find('select').find('option').prop('selected', false); |
2474
|
|
|
$el.find('select').val(field.value); |
2475
|
|
|
$el.find('select').trigger('change'); |
2476
|
|
|
break; |
2477
|
|
|
case 'multiselect': |
2478
|
|
|
$el.find('select').find('option').prop('selected', false); |
2479
|
|
|
if ((typeof field.value === 'object' || typeof field.value === 'array') && !field.value.length && $el.find('select option:first').text() == '') { |
2480
|
|
|
$el.find('select option:first').remove(); // Clear first option to show placeholder. |
2481
|
|
|
} |
2482
|
|
|
jQuery.each(field.value, function(i, v) { |
2483
|
|
|
$el.find('select').find('option[value="' + v + '"]').attr('selected', true); |
2484
|
|
|
}); |
2485
|
|
|
$el.find('select').trigger('change'); |
2486
|
|
|
break; |
2487
|
|
|
case 'checkbox': |
2488
|
|
|
if ($el.find('input[type="checkbox"]:checked').length >= 1) { |
2489
|
|
|
$el.find('input[type="checkbox"]:checked').prop('checked', false); |
2490
|
|
|
if (Array.isArray(field.value)) { |
2491
|
|
|
jQuery.each(field.value, function(i, v) { |
2492
|
|
|
$el.find('input[type="checkbox"][value="' + v + '"]').attr('checked', true); |
2493
|
|
|
}); |
2494
|
|
|
} else { |
2495
|
|
|
$el.find('input[type="checkbox"][value="' + field.value + '"]').attr('checked', true); |
2496
|
|
|
} |
2497
|
|
|
} |
2498
|
|
|
break; |
2499
|
|
|
case 'radio': |
2500
|
|
|
if ($el.find('input[type="radio"]:checked').length >= 1) { |
2501
|
|
|
setTimeout(function() { |
2502
|
|
|
$el.find('input[type="radio"]:checked').prop('checked', false); |
2503
|
|
|
$el.find('input[type="radio"][value="' + field.value + '"]').attr('checked', true); |
2504
|
|
|
}, 100); |
2505
|
|
|
} |
2506
|
|
|
break; |
2507
|
|
|
default: |
2508
|
|
|
jQuery(document.body).trigger('aui_cf_field_reset_default_value', type, $el, field); |
2509
|
|
|
break; |
2510
|
|
|
} |
2511
|
|
|
|
2512
|
|
|
if (!$el.hasClass('aui-cf-field-has-changed')) { |
2513
|
|
|
var el = aui_cf_field_get_element($el); |
2514
|
|
|
if (type === 'radio' || type === 'checkbox') { |
2515
|
|
|
el = el.find(':checked'); |
2516
|
|
|
} |
2517
|
|
|
if (el) { |
2518
|
|
|
el.trigger('change'); |
2519
|
|
|
$el.addClass('aui-cf-field-has-changed'); |
2520
|
|
|
} |
2521
|
|
|
} |
2522
|
|
|
} |
2523
|
|
|
|
2524
|
|
|
/** |
2525
|
|
|
* Get the field children. |
2526
|
|
|
*/ |
2527
|
|
|
function aui_cf_field_get_children(field_key) { |
2528
|
|
|
var rules = []; |
2529
|
|
|
jQuery.each(aui_cf_field_rules, function(j, rule) { |
2530
|
|
|
if (rule.field.field === field_key) { |
2531
|
|
|
rules.push(rule.field.rule); |
2532
|
|
|
} |
2533
|
|
|
}); |
2534
|
|
|
return rules; |
2535
|
|
|
} |
2536
|
|
|
|
2537
|
|
|
/** |
2538
|
|
|
* Check in array field value. |
2539
|
|
|
*/ |
2540
|
|
|
function aui_cf_field_in_array(find, item, exact, match) { |
2541
|
|
|
var found = false, key; |
2542
|
|
|
exact = !!exact; |
2543
|
|
|
|
2544
|
|
|
for (key in item) { |
2545
|
|
|
if ((exact && item[key] === find) || (!exact && item[key] == find) || (match && (typeof find === 'string' || typeof find === 'number') && (typeof item[key] === 'string' || typeof item[key] === 'number') && find.length && find.indexOf(item[key]) >= 0)) { |
2546
|
|
|
found = true; |
2547
|
|
|
break; |
2548
|
|
|
} |
2549
|
|
|
} |
2550
|
|
|
return found; |
2551
|
|
|
} |
2552
|
|
|
|
2553
|
|
|
/** |
2554
|
|
|
* App the field condition action. |
2555
|
|
|
*/ |
2556
|
|
|
function aui_cf_field_apply_action($el, rule, isTrue) { |
2557
|
|
|
var $destEl = jQuery('[data-rule-key="' + rule.key + '"]'); |
2558
|
|
|
|
2559
|
|
|
if (rule.action === 'show' && isTrue) { |
2560
|
|
|
if ($destEl.is(':hidden')) { |
2561
|
|
|
aui_cf_field_reset_default_value($destEl); |
2562
|
|
|
} |
2563
|
|
|
aui_cf_field_show_element($destEl); |
2564
|
|
|
} else if (rule.action === 'show' && !isTrue) { |
2565
|
|
|
aui_cf_field_hide_element($destEl); |
2566
|
|
|
} else if (rule.action === 'hide' && isTrue) { |
2567
|
|
|
aui_cf_field_hide_element($destEl); |
2568
|
|
|
} else if (rule.action === 'hide' && !isTrue) { |
2569
|
|
|
if ($destEl.is(':hidden')) { |
2570
|
|
|
aui_cf_field_reset_default_value($destEl); |
2571
|
|
|
} |
2572
|
|
|
aui_cf_field_show_element($destEl); |
2573
|
|
|
} |
2574
|
|
|
return $el.removeClass('aui-cf-field-has-changed'); |
2575
|
|
|
} |
2576
|
|
|
|
2577
|
|
|
/** |
2578
|
|
|
* Show field element. |
2579
|
|
|
*/ |
2580
|
|
|
function aui_cf_field_show_element($el) { |
2581
|
|
|
$el.removeClass('d-none').show(); |
2582
|
|
|
|
2583
|
|
|
$el.find('.aui-cf-req').each(function() { |
2584
|
|
|
if (jQuery(this).data('rule-req')) { |
2585
|
|
|
jQuery(this).removeAttr('required').prop('required', true); |
2586
|
|
|
} |
2587
|
|
|
if (jQuery(this).data('rule-oninvalid')) { |
2588
|
|
|
jQuery(this).removeAttr('oninvalid').attr('oninvalid', jQuery(this).data('rule-oninvalid')); |
2589
|
|
|
} |
2590
|
|
|
}); |
2591
|
|
|
|
2592
|
|
|
if (window && window.navigator.userAgent.indexOf("MSIE") !== -1) { |
2593
|
|
|
$el.css({ |
2594
|
|
|
"visibility": "visible" |
2595
|
|
|
}); |
2596
|
|
|
} |
2597
|
|
|
} |
2598
|
|
|
|
2599
|
|
|
/** |
2600
|
|
|
* Hide field element. |
2601
|
|
|
*/ |
2602
|
|
|
function aui_cf_field_hide_element($el) { |
2603
|
|
|
$el.addClass('d-none').hide(); |
2604
|
|
|
|
2605
|
|
|
$el.find('.aui-cf-req').each(function() { |
2606
|
|
|
if (jQuery(this).data('rule-req')) { |
2607
|
|
|
jQuery(this).removeAttr('required'); |
2608
|
|
|
} |
2609
|
|
|
if (jQuery(this).data('rule-oninvalid')) { |
2610
|
|
|
jQuery(this).removeAttr('oninvalid'); |
2611
|
|
|
} |
2612
|
|
|
}); |
2613
|
|
|
|
2614
|
|
|
if (window && window.navigator.userAgent.indexOf("MSIE") !== -1) { |
2615
|
|
|
$el.css({ |
2616
|
|
|
"visibility": "hidden" |
2617
|
|
|
}); |
2618
|
|
|
} |
2619
|
|
|
} |
2620
|
|
|
<?php do_action( 'aui_conditional_fields_js', $this ); ?> |
2621
|
|
|
</script> |
2622
|
|
|
<?php |
2623
|
|
|
$output = ob_get_clean(); |
2624
|
|
|
|
2625
|
|
|
return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
2626
|
|
|
} |
2627
|
|
|
} |
2628
|
|
|
|
2629
|
|
|
/** |
2630
|
|
|
* Run the class if found. |
2631
|
|
|
*/ |
2632
|
|
|
AyeCode_UI_Settings::instance(); |
2633
|
|
|
} |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.