]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/customize/class-wp-customize-site-icon-control.php
Wordpress 4.5.3
[autoinstalls/wordpress.git] / wp-includes / customize / class-wp-customize-site-icon-control.php
1 <?php
2 /**
3  * Customize API: WP_Customize_Site_Icon_Control class
4  *
5  * @package WordPress
6  * @subpackage Customize
7  * @since 4.4.0
8  */
9
10 /**
11  * Customize Site Icon control class.
12  *
13  * Used only for custom functionality in JavaScript.
14  *
15  * @since 4.3.0
16  *
17  * @see WP_Customize_Cropped_Image_Control
18  */
19 class WP_Customize_Site_Icon_Control extends WP_Customize_Cropped_Image_Control {
20
21         /**
22          * Control type.
23          *
24          * @since 4.3.0
25          * @access public
26          * @var string
27          */
28         public $type = 'site_icon';
29
30         /**
31          * Constructor.
32          *
33          * @since 4.3.0
34          * @access public
35          *
36          * @param WP_Customize_Manager $manager Customizer bootstrap instance.
37          * @param string               $id      Control ID.
38          * @param array                $args    Optional. Arguments to override class property defaults.
39          */
40         public function __construct( $manager, $id, $args = array() ) {
41                 parent::__construct( $manager, $id, $args );
42                 add_action( 'customize_controls_print_styles', 'wp_site_icon', 99 );
43         }
44
45         /**
46          * Renders a JS template for the content of the site icon control.
47          *
48          * @since 4.5.0
49          * @access public
50          */
51         public function content_template() {
52                 ?>
53                 <label for="{{ data.settings['default'] }}-button">
54                         <# if ( data.label ) { #>
55                                 <span class="customize-control-title">{{ data.label }}</span>
56                         <# } #>
57                         <# if ( data.description ) { #>
58                                 <span class="description customize-control-description">{{{ data.description }}}</span>
59                         <# } #>
60                 </label>
61
62                 <# if ( data.attachment && data.attachment.id ) { #>
63                 <# if ( data.attachment.sizes ) { #>
64                 <div class="current">
65                         <div class="container">
66                                 <div class="site-icon-preview">
67                                         <div class="favicon-preview">
68                                                 <img src="<?php echo esc_url( admin_url( 'images/browser.png' ) ); ?>" class="browser-preview" width="182" alt="<?php esc_attr_e( 'Browser interface preview' ); ?>" />
69
70                                                 <div class="favicon">
71                                                         <img id="preview-favicon" src="{{ data.attachment.sizes.full.url }}" alt="<?php esc_attr_e( 'Preview as a browser icon' ); ?>"/>
72                                                 </div>
73                                                 <span class="browser-title"><?php bloginfo( 'name' ); ?></span>
74                                         </div>
75                                         <img class="app-icon-preview" src="{{ data.attachment.sizes.full.url }}" alt="<?php esc_attr_e( 'Preview as an app icon' ); ?>"/>
76                                 </div>
77                         </div>
78                 </div>
79                 <# } #>
80                 <div class="actions">
81                         <# if ( data.canUpload ) { #>
82                                 <button type="button" class="button remove-button"><?php echo $this->button_labels['remove']; ?></button>
83                                 <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button"><?php echo $this->button_labels['change']; ?></button>
84                                 <div style="clear:both"></div>
85                         <# } #>
86                 </div>
87                 <# } else { #>
88                 <div class="current">
89                         <div class="container">
90                                 <div class="placeholder">
91                                         <div class="inner">
92                                                 <span><?php echo $this->button_labels['placeholder']; ?></span>
93                                         </div>
94                                 </div>
95                         </div>
96                 </div>
97                 <div class="actions">
98                         <# if ( data.defaultAttachment ) { #>
99                                 <button type="button" class="button default-button"><?php echo $this->button_labels['default']; ?></button>
100                         <# } #>
101                         <# if ( data.canUpload ) { #>
102                                 <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button"><?php echo $this->button_labels['select']; ?></button>
103                         <# } #>
104                         <div style="clear:both"></div>
105                 </div>
106                 <# } #>
107                 <?php
108         }
109 }