2020-03-11 14:51:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Customizer Control: cropped-image.
|
|
|
|
*
|
|
|
|
* @package Kirki
|
|
|
|
* @subpackage Controls
|
2020-07-12 11:16:53 +02:00
|
|
|
* @copyright Copyright (c) 2020, David Vongries
|
2020-03-11 14:51:38 +01:00
|
|
|
* @license https://opensource.org/licenses/MIT
|
|
|
|
* @since 3.0.23
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the image control.
|
|
|
|
*/
|
|
|
|
class Kirki_Control_Cropped_Image extends WP_Customize_Cropped_Image_Control {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whitelisting the "required" argument.
|
|
|
|
*
|
|
|
|
* @since 3.0.17
|
|
|
|
* @access public
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $required = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refresh the parameters passed to the JavaScript via JSON.
|
|
|
|
*
|
|
|
|
* @since 3.0.23
|
|
|
|
*
|
|
|
|
* @uses WP_Customize_Media_Control::to_json()
|
|
|
|
*/
|
|
|
|
public function to_json() {
|
|
|
|
parent::to_json();
|
|
|
|
$this->json['required'] = $this->required;
|
|
|
|
}
|
|
|
|
}
|