Your IP : 216.73.216.95


Current Path : /var/www/mainsite/new/wp-content/themes/neve/inc/customizer/controls/react/
Upload File :
Current File : /var/www/mainsite/new/wp-content/themes/neve/inc/customizer/controls/react/radio_image.php

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

namespace Neve\Customizer\Controls\React;

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