Completed
Push — develop ( 5f2b0c...a03475 )
by Aristeides
02:53 queued 02:48
created

Kirki_Field::set_input_attrs()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
 * Creates and validates field parameters.
4
 *
5
 * @package     Kirki
6
 * @category    Core
7
 * @author      Aristeides Stathopoulos
8
 * @copyright   Copyright (c) 2016, Aristeides Stathopoulos
9
 * @license     http://opensource.org/licenses/https://opensource.org/licenses/MIT
10
 * @since       1.0
11
 */
12
13
/**
14
 * Please do not use this class directly.
15
 * You should instead extend it per-field-type.
16
 */
17
class Kirki_Field {
18
19
	/**
20
	 * The ID of the kirki_config we're using.
21
	 *
22
	 * @see Kirki_Config
23
	 * @access protected
24
	 * @var string
25
	 */
26
	protected $kirki_config = 'global';
27
28
	/**
29
	 * Thje capability required so that users can edit this field.
30
	 *
31
	 * @access protected
32
	 * @var string
33
	 */
34
	protected $capability = 'edit_theme_options';
35
36
	/**
37
	 * If we're using options instead of theme_mods
38
	 * and we want them serialized, this is the option that
39
	 * will saved in the db.
40
	 *
41
	 * @access protected
42
	 * @var string
43
	 */
44
	protected $option_name = '';
45
46
	/**
47
	 * Custom input attributes (defined as an array).
48
	 *
49
	 * @access protected
50
	 * @var array
51
	 */
52
	protected $input_attrs = array();
53
54
	/**
55
	 * Use "theme_mod" or "option".
56
	 *
57
	 * @access protected
58
	 * @var string
59
	 */
60
	protected $option_type = 'theme_mod';
61
62
	/**
63
	 * The name of this setting (id for the db).
64
	 *
65
	 * @access protected
66
	 * @var string|array
67
	 */
68
	protected $settings = '';
69
70
	/**
71
	 * Set to true if you want to disable all CSS output for this field.
72
	 *
73
	 * @access protected
74
	 * @var bool
75
	 */
76
	protected $disable_output = false;
77
78
	/**
79
	 * The field type.
80
	 *
81
	 * @access protected
82
	 * @var string
83
	 */
84
	protected $type = 'kirki-generic';
85
86
	/**
87
	 * Some fields require options to be set.
88
	 * We're whitelisting the property here
89
	 * and suggest you validate this in a child class.
90
	 *
91
	 * @access protected
92
	 * @var array
93
	 */
94
	protected $choices = array();
95
96
	/**
97
	 * Assign this field to a section.
98
	 * Fields not assigned to a section will not be displayed in the customizer.
99
	 *
100
	 * @access protected
101
	 * @var string
102
	 */
103
	protected $section = '';
104
105
	/**
106
	 * The default value for this field.
107
	 *
108
	 * @access protected
109
	 * @var string|array
110
	 */
111
	protected $default = '';
112
113
	/**
114
	 * Priority determines the position of a control inside a section.
115
	 * Lower priority numbers move the control to the top.
116
	 *
117
	 * @access protected
118
	 * @var int
119
	 */
120
	protected $priority = 10;
121
122
	/**
123
	 * Unique ID for this field.
124
	 * This is auto-calculated from the $settings argument.
125
	 *
126
	 * @access protected
127
	 * @var string
128
	 */
129
	protected $id = '';
130
131
	/**
132
	 * Use if you want to automatically generate CSS from this field's value.
133
	 *
134
	 * @see https://kirki.org/docs/arguments/output
135
	 * @access protected
136
	 * @var array
137
	 */
138
	protected $output = array();
139
140
	/**
141
	 * Use to automatically generate postMessage scripts.
142
	 * Not necessary to use if you use 'transport' => 'auto'
143
	 * and have already set an array for the 'output' argument.
144
	 *
145
	 * @see https://kirki.org/docs/arguments/js_vars
146
	 * @access protected
147
	 * @var array
148
	 */
149
	protected $js_vars = array();
150
151
	/**
152
	 * If you want to use a CSS compiler, then use this to set the variable names.
153
	 *
154
	 * @see https://kirki.org/docs/arguments/variables
155
	 * @access protected
156
	 * @var array
157
	 */
158
	protected $variables = array();
159
160
	/**
161
	 * Text that will be used in a tooltip to provide extra info for this field.
162
	 *
163
	 * @access protected
164
	 * @var string
165
	 */
166
	protected $tooltip = '';
167
168
	/**
169
	 * Whitelisting for backwards-compatibility.
170
	 *
171
	 * @access protected
172
	 * @var string
173
	 */
174
	protected $help = '';
175
176
	/**
177
	 * A custom callback to determine if the field should be visible or not.
178
	 *
179
	 * @access protected
180
	 * @var string|array
181
	 */
182
	protected $active_callback = '__return_true';
183
184
	/**
185
	 * A custom sanitize callback that will be used to properly save the values.
186
	 *
187
	 * @access protected
188
	 * @var string|array
189
	 */
190
	protected $sanitize_callback = '';
191
192
	/**
193
	 * Use 'refresh', 'postMessage' or 'auto'.
194
	 * 'auto' will automatically geberate any 'js_vars' from the 'output' argument.
195
	 *
196
	 * @access protected
197
	 * @var string
198
	 */
199
	protected $transport = 'refresh';
200
201
	/**
202
	 * Define dependencies to show/hide this field based on the values of other fields.
203
	 *
204
	 * @access protected
205
	 * @var array
206
	 */
207
	protected $required = array();
208
209
	/**
210
	 * Suggested width for cropped image.
211
	 *
212
	 * @access protected
213
	 * @var int
214
	 */
215
	protected $width = 150;
216
217
	/**
218
	 * Suggested height for cropped image.
219
	 *
220
	 * @access protected
221
	 * @var int
222
	 */
223
	protected $height = 150;
224
225
	/**
226
	 * Whether the width is flexible for cropped image.
227
	 *
228
	 * @access protected
229
	 * @var bool
230
	 */
231
	protected $flex_width = false;
232
233
	/**
234
	 * Whether the height is flexible for cropped image.
235
	 *
236
	 * @access protected
237
	 * @var bool
238
	 */
239
	protected $flex_height = false;
240
241
	/**
242
	 * Contain the settings for the repeater rows labels
243
	 *
244
	 * @access protected
245
	 * @var array
246
	 */
247
	protected $row_label = array();
248
249
	/**
250
	 * Partial Refreshes array.
251
	 *
252
	 * @access protected
253
	 * @var array
254
	 */
255
	protected $partial_refresh = array();
256
257
	/**
258
	 * Use only on image, cropped_image, upload controls.
259
	 * Limit the Media library to a specific mime type
260
	 *
261
	 * @access protected
262
	 * @var array
263
	 */
264
	protected $mime_type = '';
265
266
	/**
267
	 * Used by image fields.
268
	 *
269
	 * @access protected
270
	 * @var array
271
	 * @since 3.0.0
272
	 */
273
	protected $button_labels = array();
274
275
	/**
276
	 * Use only on select controls.
277
	 * Defines if this is a multi-select or not.
278
	 * If value is > 1, then the maximum number of selectable options
279
	 * is the number defined here.
280
	 *
281
	 * @access protected
282
	 * @var integer
283
	 */
284
	protected $multiple = 1;
285
286
	/**
287
	 * The class constructor.
288
	 * Parses and sanitizes all field arguments.
289
	 * Then it adds the field to Kirki::$fields.
290
	 *
291
	 * @access public
292
	 * @param string $config_id    The ID of the config we want to use.
293
	 *                             Defaults to "global".
294
	 *                             Configs are handled by the Kirki_Config class.
295
	 * @param array  $args         The arguments of the field.
296
	 */
297
	public function __construct( $config_id = 'global', $args = array() ) {
298
299
		if ( isset( $args['setting'] ) && ! empty( $args['setting'] ) && ( ! isset( $args['settings'] ) || empty( $args['settings'] ) ) ) {
300
			$args['settings'] = $args['setting'];
301
			unset( $args['setting'] );
302
			error_log( 'Kirki: Typo found in field ' . $args['settings'] . ' ("setting" instead of "settings").' );
303
		}
304
305
		if ( is_string( $config_id ) ) {
306
			$args['kirki_config'] = $config_id;
307
		}
308
309
		// In case the user only provides 1 argument,
310
		// assume that the provided argument is $args and set $config_id = 'global'.
311
		if ( is_array( $config_id ) && empty( $args ) ) {
312
			$args = $config_id;
313
			$this->kirki_config = 'global';
314
		}
315
		$this->kirki_config = trim( esc_attr( $config_id ) );
316
		if ( '' === $config_id ) {
317
			$this->kirki_config = 'global';
318
		}
319
320
		// Get defaults from the class.
321
		$defaults = get_class_vars( __CLASS__ );
322
323
		// Get the config arguments, and merge them with the defaults.
324
		$config_defaults = ( isset( Kirki::$config['global'] ) ) ? Kirki::$config['global'] : array();
325
		if ( 'global' !== $this->kirki_config && isset( Kirki::$config[ $this->kirki_config ] ) ) {
326
			$config_defaults = Kirki::$config[ $this->kirki_config ];
327
		}
328
		$config_defaults = ( is_array( $config_defaults ) ) ? $config_defaults : array();
329
		foreach ( $config_defaults as $key => $value ) {
330
			if ( isset( $defaults[ $key ] ) ) {
331
				if ( ! empty( $value ) && $value != $defaults[ $key ] ) {
332
					$defaults[ $key ] = $value;
333
				}
334
			}
335
		}
336
337
		// Merge our args with the defaults.
338
		$args = wp_parse_args( $args, $defaults );
339
340
		// Set the class properties using the parsed args.
341
		foreach ( $args as $key => $value ) {
342
			$this->$key = $value;
343
		}
344
345
		// An array of whitelisted properties that don't need to be sanitized here.
346
		// Format: $key => $default_value.
347
		$whitelisted = apply_filters( 'kirki/' . $this->kirki_config . '/fields/properties_whitelist', array(
348
			'label'       => '', // This is sanitized later in the controls themselves.
349
			'description' => '', // This is sanitized later in the controls themselves.
350
			'mode'        => '', // Only used for backwards-compatibility reasons.
351
			'fields'      => array(), // Used in repeater fields.
352
			'row_label'   => array(), // Used in repeater fields.
353
		) );
354
355
		$this->set_field( $whitelisted );
356
357
	}
358
359
	/**
360
	 * Processes the field arguments
361
	 *
362
	 * @param array $whitelisted_properties Defines an array of arguments that will skip validation at this point.
363
	 */
364
	protected function set_field( $whitelisted_properties = array() ) {
365
366
		$properties = get_class_vars( __CLASS__ );
367
		// Remove any whitelisted properties from above.
368
		// These will get a free pass, completely unfiltered.
369
		foreach ( $whitelisted_properties as $key => $default_value ) {
370
			if ( isset( $properties[ $key ] ) ) {
371
				unset( $properties[ $key ] );
372
			}
373
		}
374
375
		// Some things must run before the others.
376
		$priorities = array(
377
			'option_name',
378
			'option_type',
379
			'settings',
380
		);
381
382
		foreach ( $priorities as $priority ) {
383
			if ( method_exists( $this, 'set_' . $priority ) ) {
384
				$method_name = 'set_' . $priority;
385
				$this->$method_name();
386
			}
387
		}
388
389
		// Sanitize the properties, skipping the ones run from the $priorities.
390
		foreach ( $properties as $property => $value ) {
391
			if ( in_array( $property, $priorities, true ) ) {
392
				continue;
393
			}
394
			if ( method_exists( $this, 'set_' . $property ) ) {
395
				$method_name = 'set_' . $property;
396
				$this->$method_name();
397
			}
398
		}
399
400
		// Get all arguments with their values.
401
		$args = get_class_vars( __CLASS__ );
402
		foreach ( $args as $key => $default_value ) {
403
			$args[ $key ] = $this->$key;
404
		}
405
406
		// Add the whitelisted properties through the back door.
407
		foreach ( $whitelisted_properties as $key => $default_value ) {
408
			if ( ! isset( $this->$key ) ) {
409
				$this->$key = $default_value;
410
			}
411
			$args[ $key ] = $this->$key;
412
		}
413
414
		// Add the field to the static $fields variable properly indexed.
415
		Kirki::$fields[ $this->settings ] = $args;
416
417
	}
418
419
	/**
420
	 * This allows us to process this on a field-basis
421
	 * by using sub-classes which can override this method.
422
	 *
423
	 * @access protected
424
	 */
425
	protected function set_default() {}
426
427
	/**
428
	 * Escape $kirki_config.
429
	 *
430
	 * @access protected
431
	 */
432
	protected function set_kirki_config() {
433
434
		$this->kirki_config = esc_attr( $this->kirki_config );
435
436
	}
437
438
	/**
439
	 * Escape $option_name.
440
	 *
441
	 * @access protected
442
	 */
443
	protected function set_option_name() {
444
445
		$this->option_name = esc_attr( $this->option_name );
446
447
	}
448
449
	/**
450
	 * Escape the $section.
451
	 *
452
	 * @access protected
453
	 */
454
	protected function set_section() {
455
456
		$this->section = sanitize_key( $this->section );
457
458
	}
459
460
	/**
461
	 * Escape the $section.
462
	 *
463
	 * @access protected
464
	 */
465
	protected function set_input_attrs() {
466
467
		if ( ! is_array( $this->input_attrs ) ) {
468
			$this->input_attrs = array();
469
		}
470
471
	}
472
473
	/**
474
	 * Checks the capability chosen is valid.
475
	 * If not, then falls back to 'edit_theme_options'
476
	 *
477
	 * @access protected
478
	 */
479
	protected function set_capability() {
480
		// Early exit if we're using 'edit_theme_options'.
481
		if ( 'edit_theme_options' === $this->capability ) {
482
			return;
483
		}
484
		// Escape & trim the capability.
485
		$this->capability = trim( esc_attr( $this->capability ) );
486
	}
487
488
	/**
489
	 * Make sure we're using the correct option_type
490
	 *
491
	 * @access protected
492
	 */
493
	protected function set_option_type() {
494
495
		// Take care of common typos.
496
		if ( 'options' === $this->option_type ) {
497
			$this->option_type = 'option';
498
		}
499
		// Take care of common typos.
500
		if ( 'theme_mods' === $this->option_type ) {
501
			$this->option_type = 'theme_mod';
502
		}
503
	}
504
505
	/**
506
	 * Modifications for partial refreshes.
507
	 *
508
	 * @access protected
509
	 */
510
	protected function set_partial_refresh() {
511
		if ( ! is_array( $this->partial_refresh ) ) {
512
			$this->partial_refresh = array();
513
		}
514
		foreach ( $this->partial_refresh as $id => $args ) {
515
			if ( ! is_array( $args ) || ! isset( $args['selector'] ) || ! isset( $args['render_callback'] ) || ! is_callable( $args['render_callback'] ) ) {
516
				unset( $this->partial_refresh[ $id ] );
517
				continue;
518
			}
519
		}
520
		if ( ! empty( $this->partial_refresh ) ) {
521
			$this->transport = 'postMessage';
522
		}
523
	}
524
525
	/**
526
	 * Sets the settings.
527
	 * If we're using serialized options it makes sure that settings are properly formatted.
528
	 * We'll also be escaping all setting names here for consistency.
529
	 *
530
	 * @access protected
531
	 */
532
	protected function set_settings() {
533
534
		// If settings is not an array, temporarily convert it to an array.
535
		// This is just to allow us to process everything the same way and avoid code duplication.
536
		// if settings is not an array then it will not be set as an array in the end.
537
		if ( ! is_array( $this->settings ) ) {
538
			$this->settings = array(
539
				'kirki_placeholder_setting' => $this->settings,
540
			);
541
		}
542
		$settings = array();
543
		foreach ( $this->settings as $setting_key => $setting_value ) {
544
			$settings[ sanitize_key( $setting_key ) ] = esc_attr( $setting_value );
545
			// If we're using serialized options then we need to spice this up.
546
			if ( 'option' === $this->option_type && '' !== $this->option_name && ( false === strpos( $setting_key, '[' ) ) ) {
547
				$settings[ sanitize_key( $setting_key ) ] = esc_attr( $this->option_name ) . '[' . esc_attr( $setting_value ) . ']';
548
			}
549
		}
550
		$this->settings = $settings;
551
		if ( isset( $this->settings['kirki_placeholder_setting'] ) ) {
552
			$this->settings = $this->settings['kirki_placeholder_setting'];
553
		}
554
555
	}
556
557
	/**
558
	 * Escapes the tooltip messages.
559
	 *
560
	 * @access protected
561
	 */
562
	protected function set_tooltip() {
563
564
		if ( '' !== $this->tooltip ) {
565
			$this->tooltip = wp_strip_all_tags( $this->tooltip );
566
			return;
567
		}
568
569
	}
570
571
	/**
572
	 * Sets the active_callback
573
	 * If we're using the $required argument,
574
	 * Then this is where the switch is made to our evaluation method.
575
	 *
576
	 * @access protected
577
	 */
578
	protected function set_active_callback() {
579
580
		if ( is_array( $this->active_callback ) && ! is_callable( $this->active_callback ) ) {
581
			if ( isset( $this->active_callback[0] ) ) {
582
				$this->required = $this->active_callback;
583
			}
584
		}
585
586
		if ( ! empty( $this->required ) ) {
587
			$this->active_callback = array( 'Kirki_Active_Callback', 'evaluate' );
588
			return;
589
		}
590
		// No need to proceed any further if we're using the default value.
591
		if ( '__return_true' === $this->active_callback ) {
592
			return;
593
		}
594
		// Make sure the function is callable, otherwise fallback to __return_true.
595
		if ( ! is_callable( $this->active_callback ) ) {
596
			$this->active_callback = '__return_true';
597
		}
598
599
	}
600
601
	/**
602
	 * Sets the control type.
603
	 *
604
	 * @access protected
605
	 */
606
	protected function set_type() {
607
608
		// Escape the control type (it doesn't hurt to be sure).
609
		$this->type = esc_attr( $this->type );
610
611
	}
612
613
	/**
614
	 * Sets the $id.
615
	 * Setting the ID should happen after the 'settings' sanitization.
616
	 * This way we can also properly handle cases where the option_type is set to 'option'
617
	 * and we're using an array instead of individual options.
618
	 *
619
	 * @access protected
620
	 */
621
	protected function set_id() {
622
623
		$this->id = sanitize_key( str_replace( '[', '-', str_replace( ']', '', $this->settings ) ) );
624
625
	}
626
627
	/**
628
	 * Sets the $sanitize_callback
629
	 *
630
	 * @access protected
631
	 */
632
	protected function set_sanitize_callback() {
633
634
		// If a custom sanitize_callback has been defined,
635
		// then we don't need to proceed any further.
636
		if ( ! empty( $this->sanitize_callback ) ) {
637
			return;
638
		}
639
640
		$default_callbacks = array(
641
			'kirki-multicheck'       => array( 'Kirki_Sanitize_Values', 'multicheck' ),
642
			'kirki-typography'       => array( 'Kirki_Sanitize_Values', 'typography' ),
643
		);
644
645
		if ( array_key_exists( $this->type, $default_callbacks ) ) {
646
			$this->sanitize_callback = $default_callbacks[ $this->type ];
647
		}
648
649
	}
650
651
	/**
652
	 * Sets the $choices.
653
	 *
654
	 * @access protected
655
	 */
656
	protected function set_choices() {
657
658
		if ( ! is_array( $this->choices ) ) {
659
			$this->choices = array();
660
		}
661
662
	}
663
664
	/**
665
	 * Escapes the $disable_output.
666
	 *
667
	 * @access protected
668
	 */
669
	protected function set_disable_output() {
670
671
		$this->disable_output = (bool) $this->disable_output;
672
673
	}
674
675
	/**
676
	 * Sets the $sanitize_callback
677
	 *
678
	 * @access protected
679
	 */
680
	protected function set_output() {
681
682
		if ( empty( $this->output ) ) {
683
			return;
684
		}
685
		if ( ! empty( $this->output ) && ! is_array( $this->output ) ) {
686
			$this->output = array(
687
				array(
688
					'element' => $this->output,
689
				),
690
			);
691
		}
692
		// Convert to array of arrays if needed.
693
		if ( isset( $this->output['element'] ) ) {
694
			$this->output = array( $this->output );
695
		}
696
		$outputs = array();
697
		foreach ( $this->output as $output ) {
698
			if ( ! isset( $output['element'] ) || ( ! isset( $output['property'] ) && ! in_array( $this->type, array( 'kirki-typography', 'background' ), true ) ) ) {
699
				continue;
700
			}
701
			if ( ! isset( $output['sanitize_callback'] ) && isset( $output['callback'] ) ) {
702
				$output['sanitize_callback'] = $output['callback'];
703
			}
704
			// Convert element arrays to strings.
705
			if ( is_array( $output['element'] ) ) {
706
				$output['element'] = array_unique( $output['element'] );
707
				sort( $output['element'] );
708
				$output['element'] = implode( ',', $output['element'] );
709
			}
710
			$outputs[] = array(
711
				'element'           => $output['element'],
712
				'property'          => ( isset( $output['property'] ) ) ? $output['property'] : '',
713
				'media_query'       => ( isset( $output['media_query'] ) ) ? $output['media_query'] : 'global',
714
				'sanitize_callback' => ( isset( $output['sanitize_callback'] ) ) ? $output['sanitize_callback'] : '',
715
				'units'             => ( isset( $output['units'] ) ) ? $output['units'] : '',
716
				'prefix'            => ( isset( $output['prefix'] ) ) ? $output['prefix'] : '',
717
				'suffix'            => ( isset( $output['suffix'] ) ) ? $output['suffix'] : '',
718
				'exclude'           => ( isset( $output['exclude'] ) ) ? $output['exclude'] : false,
719
			);
720
		}
721
	}
722
723
	/**
724
	 * Sets the $js_vars
725
	 *
726
	 * @access protected
727
	 */
728
	protected function set_js_vars() {
729
730
		if ( ! is_array( $this->js_vars ) ) {
731
			$this->js_vars = array();
732
		}
733
734
		// Check if transport is set to auto.
735
		// If not, then skip the auto-calculations and exit early.
736
		if ( 'auto' !== $this->transport ) {
737
			return;
738
		}
739
740
		// Set transport to refresh initially.
741
		// Serves as a fallback in case we failt to auto-calculate js_vars.
742
		$this->transport = 'refresh';
743
744
		$js_vars = array();
745
746
		// Try to auto-generate js_vars.
747
		// First we need to check if js_vars are empty, and that output is not empty.
748
		if ( empty( $this->js_vars ) && ! empty( $this->output ) ) {
749
750
			// Start going through each item in the $output array.
751
			foreach ( $this->output as $output ) {
752
				$output['function'] = 'css';
753
754
				// If 'element' or 'property' are not defined, skip this.
755
				if ( ! isset( $output['element'] ) || ! isset( $output['property'] ) ) {
756
					continue;
757
				}
758
				if ( is_array( $output['element'] ) ) {
759
					$output['element'] = implode( ',', $output['element'] );
760
				}
761
				if ( false !== strpos( $output['element'], ':' ) ) {
762
					$output['function'] = 'style';
763
				}
764
765
				// If there's a sanitize_callback defined, skip this.
766
				if ( isset( $output['sanitize_callback'] ) && ! empty( $output['sanitize_callback'] ) ) {
767
					continue;
768
				}
769
770
				// If we got this far, it's safe to add this.
771
				$js_vars[] = $output;
772
			}
773
774
			// Did we manage to get all the items from 'output'?
775
			// If not, then we're missing something so don't add this.
776
			if ( count( $js_vars ) !== count( $this->output ) ) {
777
				return;
778
			}
779
			$this->js_vars   = $js_vars;
780
			$this->transport = 'postMessage';
781
782
		}
783
784
	}
785
786
	/**
787
	 * Sets the $variables
788
	 *
789
	 * @access protected
790
	 */
791
	protected function set_variables() {
792
		if ( ! is_array( $this->variables ) ) {
793
			$variable = ( is_string( $this->variables ) && ! empty( $this->variables ) ) ? $this->variables : false;
794
			$this->variables = array();
795
			if ( $variable && empty( $this->variables ) ) {
796
				$this->variables[0]['name'] = $variable;
797
			}
798
		}
799
	}
800
801
	/**
802
	 * This is a fallback method:
803
	 * $help has now become $tooltip, so this just migrates the data
804
	 *
805
	 * @access protected
806
	 */
807
	protected function set_help() {
808
809
		if ( '' !== $this->tooltip ) {
810
			return;
811
		}
812
		if ( '' !== $this->help ) {
813
			$this->tooltip = wp_strip_all_tags( $this->help );
814
			// $help has been deprecated
815
			$this->help = '';
816
			return;
817
		}
818
819
	}
820
821
	/**
822
	 * Sets the $transport
823
	 *
824
	 * @access protected
825
	 */
826
	protected function set_transport() {
827
828
		if ( 'postmessage' === trim( strtolower( $this->transport ) ) ) {
829
			$this->transport = 'postMessage';
830
		}
831
832
	}
833
834
	/**
835
	 * Sets the $required
836
	 *
837
	 * @access protected
838
	 */
839
	protected function set_required() {
840
841
		if ( ! is_array( $this->required ) ) {
842
			$this->required = array();
843
		}
844
845
	}
846
847
	/**
848
	 * Sets the $priority
849
	 *
850
	 * @access protected
851
	 */
852
	protected function set_priority() {
853
854
		$this->priority = absint( $this->priority );
855
856
	}
857
}
858