mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
0e5bb06cb8
Props chetanchauhan, celloexpressions. See #33755. Fixes #35542. Built from https://develop.svn.wordpress.org/trunk@36769 git-svn-id: http://core.svn.wordpress.org/trunk@36736 1a063a9b-81f0-0310-95a4-ce76da25c4cd
78 lines
1.7 KiB
PHP
78 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Customize API: WP_Customize_Image_Control class
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Customize
|
|
* @since 4.4.0
|
|
*/
|
|
|
|
/**
|
|
* Customize Image Control class.
|
|
*
|
|
* @since 3.4.0
|
|
*
|
|
* @see WP_Customize_Upload_Control
|
|
*/
|
|
class WP_Customize_Image_Control extends WP_Customize_Upload_Control {
|
|
public $type = 'image';
|
|
public $mime_type = 'image';
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @since 3.4.0
|
|
* @uses WP_Customize_Upload_Control::__construct()
|
|
*
|
|
* @param WP_Customize_Manager $manager Customizer bootstrap instance.
|
|
* @param string $id Control ID.
|
|
* @param array $args Optional. Arguments to override class property defaults.
|
|
*/
|
|
public function __construct( $manager, $id, $args = array() ) {
|
|
parent::__construct( $manager, $id, $args );
|
|
|
|
$this->button_labels = wp_parse_args( $this->button_labels, array(
|
|
'select' => __( 'Select Image' ),
|
|
'change' => __( 'Change Image' ),
|
|
'remove' => __( 'Remove' ),
|
|
'default' => __( 'Default' ),
|
|
'placeholder' => __( 'No image selected' ),
|
|
'frame_title' => __( 'Select Image' ),
|
|
'frame_button' => __( 'Choose Image' ),
|
|
) );
|
|
}
|
|
|
|
/**
|
|
* @since 3.4.2
|
|
* @deprecated 4.1.0
|
|
*/
|
|
public function prepare_control() {}
|
|
|
|
/**
|
|
* @since 3.4.0
|
|
* @deprecated 4.1.0
|
|
*
|
|
* @param string $id
|
|
* @param string $label
|
|
* @param mixed $callback
|
|
*/
|
|
public function add_tab( $id, $label, $callback ) {}
|
|
|
|
/**
|
|
* @since 3.4.0
|
|
* @deprecated 4.1.0
|
|
*
|
|
* @param string $id
|
|
*/
|
|
public function remove_tab( $id ) {}
|
|
|
|
/**
|
|
* @since 3.4.0
|
|
* @deprecated 4.1.0
|
|
*
|
|
* @param string $url
|
|
* @param string $thumbnail_url
|
|
*/
|
|
public function print_tab_image( $url, $thumbnail_url = null ) {}
|
|
}
|