Your IP : 18.117.7.5


Current Path : /home/church/public_html/wp-content/themes/neve/inc/customizer/controls/react/
Upload File :
Current File : /home/church/public_html/wp-content/themes/neve/inc/customizer/controls/react/multiselect.php

<?php
/**
 * Multiselect Control. Handles data passing from args to JS.
 *
 * @package Neve\Customizer\Controls\React
 */

namespace Neve\Customizer\Controls\React;

/**
 * Class Button_Appearance
 *
 * @package Neve\Customizer\Controls\React
 */
class Multiselect extends \WP_Customize_Control {
	/**
	 * Control type.
	 *
	 * @var string
	 */
	public $type = 'neve_multiselect';
	/**
	 * Additional arguments passed to JS.
	 *
	 * @var array
	 */
	public $choices = [];
	/**
	 * Send to JS.
	 */
	public function to_json() {
		parent::to_json();
		$this->json['choices'] = $this->choices;
	}
}