✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.77
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/sc3naki1272/jemstables.info/wp-includes/customize//class-wp-customize-site-icon-control.php
<?php
/**
 * Customize API: WP_Customize_Site_Icon_Control class
 *
 * @package WordPress
 * @subpackage Customize
 * @since 4.4.0
 */

/**
 * Customize Site Icon control class.
 *
 * Used only for custom functionality in JavaScript.
 *
 * @since 4.3.0
 *
 * @see WP_Customize_Cropped_Image_Control
 */
class WP_Customize_Site_Icon_Control extends WP_Customize_Cropped_Image_Control {

	/**
	 * Control type.
	 *
	 * @since 4.3.0
	 * @var string
	 */
	public $type = 'site_icon';

	/**
	 * Constructor.
	 *
	 * @since 4.3.0
	 *
	 * @see WP_Customize_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.
	 *                                      See WP_Customize_Control::__construct() for information
	 *                                      on accepted arguments. Default empty array.
	 */
	public function __construct( $manager, $id, $args = array() ) {
		parent::__construct( $manager, $id, $args );
		add_action( 'customize_controls_print_styles', 'wp_site_icon', 99 );
	}

	/**
	 * Renders a JS template for the content of the site icon control.
	 *
	 * @since 4.5.0
	 */
	public function content_template() {
		?>
		<# if ( data.label ) { #>
			<span class="customize-control-title">{{ data.label }}</span>
		<# } #>

		<# if ( data.attachment && data.attachment.id ) { #>
			<div class="attachment-media-view">
				<# if ( data.attachment.sizes ) { #>
					<style>
						:root{
							--site-icon-url: url( '{{ data.attachment.sizes.full ? data.attachment.sizes.full.url : data.attachment.url }}' );
						}
					</style>
					<div class="site-icon-preview customizer">
						<div class="direction-wrap">
							<img src="{{ data.attachment.sizes.full ? data.attachment.sizes.full.url : data.attachment.url }}" class="app-icon-preview" alt="{{
								data.attachment.alt ?
									wp.i18n.sprintf(
										<?php
										/* translators: %s: The selected image alt text. */
										echo wp_json_encode( __( 'App icon preview: Current image: %s' ) )
										?>
										,
										data.attachment.alt
									) :
									wp.i18n.sprintf(
										<?php
										/* translators: %s: The selected image filename. */
										echo wp_json_encode( __( 'App icon preview: The current image has no alternative text. The file name is: %s' ) );
										?>
										,
										data.attachment.filename
									)
							}}" />
							<div class="site-icon-preview-browser">
								<svg role="img" aria-hidden="true" fill="none" xmlns="http://www.w3.org/2000/svg" class="browser-buttons"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 20a6 6 0 1 1 12 0 6 6 0 0 1-12 0Zm18 0a6 6 0 1 1 12 0 6 6 0 0 1-12 0Zm24-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z" /></svg>
								<div class="site-icon-preview-tab">
									<img src="{{ data.attachment.sizes.full ? data.attachment.sizes.full.url : data.attachment.url }}" class="browser-icon-preview" alt="{{
										data.attachment.alt ?
											wp.i18n.sprintf(
												<?php
												/* translators: %s: The selected image alt text. */
												echo wp_json_encode( __( 'Browser icon preview: Current image: %s' ) );
												?>
												,
												data.attachment.alt
											) :
											wp.i18n.sprintf(
												<?php
												/* translators: %s: The selected image filename. */
												echo wp_json_encode( __( 'Browser icon preview: The current image has no alternative text. The file name is: %s' ) );
												?>
												,
												data.attachment.filename
											)
									}}" />
									<div class="site-icon-preview-site-title" aria-hidden="true"><# print( '<?php echo esc_js( get_bloginfo( 'name' ) ); ?>' ) #></div>
										<svg role="img" aria-hidden="true" fill="none" xmlns="http://www.w3.org/2000/svg" class="close-button">
											<path d="M12 13.0607L15.7123 16.773L16.773 15.7123L13.0607 12L16.773 8.28772L15.7123 7.22706L12 10.9394L8.28771 7.22705L7.22705 8.28771L10.9394 12L7.22706 15.7123L8.28772 16.773L12 13.0607Z" />
										</svg>
									</div>
								</div>
							</div>
						</div>
					</div>
				<# } #>
				<div class="actions">
					<# if ( data.canUpload ) { #>
						<button type="button" class="button remove-button"><?php echo $this->button_labels['remove']; ?></button>
						<button type="button" class="button upload-button"><?php echo $this->button_labels['change']; ?></button>
					<# } #>
				</div>
			</div>
		<# } else { #>
			<div class="attachment-media-view">
				<# if ( data.canUpload ) { #>
					<button type="button" class="upload-button button"><?php echo $this->button_labels['site_icon']; ?></button>
				<# } #>
				<div class="actions">
					<# if ( data.defaultAttachment ) { #>
						<button type="button" class="button default-button"><?php echo $this->button_labels['default']; ?></button>
					<# } #>
				</div>
			</div>
		<# } #>
		<# if ( data.description ) { #>
			<span class="description customize-control-description">{{{ data.description }}}</span>
		<# } #>
		<?php
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
20 Aug 2026 8.21 AM
sc3naki1272 / sc3naki1272
0755
class-wp-customize-background-image-control.php
1.254 KB
2 Nov 2022 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-background-image-setting.php
0.764 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-background-position-control.php
2.961 KB
15 Aug 2023 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-code-editor-control.php
2.263 KB
15 Jun 2020 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-color-control.php
3.134 KB
3 Dec 2025 1.41 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-cropped-image-control.php
1.425 KB
25 Apr 2024 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-custom-css-setting.php
7.513 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-date-time-control.php
9.225 KB
16 Apr 2025 3.43 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-filter-setting.php
0.716 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-header-image-control.php
8.118 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-header-image-setting.php
1.795 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-image-control.php
1.183 KB
11 Mar 2021 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-media-control.php
9.244 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-auto-add-control.php
1.096 KB
4 Oct 2017 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-control.php
2.078 KB
15 Aug 2023 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-item-control.php
7.966 KB
15 Jul 2024 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-item-setting.php
27.426 KB
20 Aug 2026 8.21 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-location-control.php
2.245 KB
25 Apr 2024 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-locations-control.php
2.751 KB
15 Aug 2023 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-name-control.php
1.104 KB
4 Oct 2017 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-section.php
0.699 KB
11 Mar 2021 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menu-setting.php
18.68 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-nav-menus-panel.php
3.231 KB
15 Aug 2023 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-new-menu-control.php
1.67 KB
26 Feb 2020 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-new-menu-section.php
1.653 KB
26 Feb 2020 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-partial.php
10.296 KB
16 Jun 2026 6.41 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-selective-refresh.php
13.453 KB
20 Aug 2026 8.21 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-sidebar-section.php
1.034 KB
1 Dec 2017 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-site-icon-control.php
5.042 KB
3 Dec 2025 1.41 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-theme-control.php
11.61 KB
25 Apr 2024 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-themes-panel.php
3.306 KB
14 Nov 2024 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-themes-section.php
6.792 KB
16 Apr 2025 3.43 PM
sc3naki1272 / sc3naki1272
0644
class-wp-customize-upload-control.php
1.169 KB
11 Mar 2021 12.00 AM
sc3naki1272 / sc3naki1272
0644
class-wp-sidebar-block-editor-control.php
0.67 KB
20 Jul 2021 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-widget-area-customize-control.php
1.679 KB
15 Aug 2023 11.00 PM
sc3naki1272 / sc3naki1272
0644
class-wp-widget-form-customize-control.php
2.584 KB
12 Apr 2019 11.00 PM
sc3naki1272 / sc3naki1272
0644
error_log
70.047 KB
15 Sep 2026 2.38 PM
sc3naki1272 / sc3naki1272
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF