Priority File Manager
📁 public_html
Base Directory:
/home/ecedu/public_html
/home/ecedu/public_html/wp-content/plugins
/home/ecedu/public_html/wp-content
/home/ecedu
/var/www
/var/www/cgi-bin
/var/www/html
public_html
/
wp-includes
/
customize
/home/ecedu/public_html/wp-includes/customize
Name
Type
Size
Actions
📁
..
Folder
-
Delete
Rename
📄
class-wp-customize-background-image-control.php
File
1284
Delete
Rename
Edit
Download
📄
class-wp-customize-background-image-setting.php
File
639
Delete
Rename
Edit
Download
📄
class-wp-customize-background-position-control.php
File
3032
Delete
Rename
Edit
Download
📄
class-wp-customize-code-editor-control.php
File
2317
Delete
Rename
Edit
Download
📄
class-wp-customize-color-control.php
File
3066
Delete
Rename
Edit
Download
📄
class-wp-customize-cropped-image-control.php
File
1459
Delete
Rename
Edit
Download
📄
class-wp-customize-custom-css-setting.php
File
5288
Delete
Rename
Edit
Download
📄
class-wp-customize-date-time-control.php
File
9446
Delete
Rename
Edit
Download
📄
class-wp-customize-filter-setting.php
File
588
Delete
Rename
Edit
Download
📄
class-wp-customize-header-image-control.php
File
8030
Delete
Rename
Edit
Download
📄
class-wp-customize-header-image-setting.php
File
1782
Delete
Rename
Edit
Download
📄
class-wp-customize-image-control.php
File
1211
Delete
Rename
Edit
Download
📄
class-wp-customize-media-control.php
File
9415
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-auto-add-control.php
File
1122
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-control.php
File
2128
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-item-control.php
File
8157
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-item-setting.php
File
27869
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-location-control.php
File
2299
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-locations-control.php
File
2817
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-name-control.php
File
1131
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-section.php
File
716
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-setting.php
File
18936
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menus-panel.php
File
3309
Delete
Rename
Edit
Download
📄
class-wp-customize-new-menu-control.php
File
1710
Delete
Rename
Edit
Download
📄
class-wp-customize-new-menu-section.php
File
1693
Delete
Rename
Edit
Download
📄
class-wp-customize-partial.php
File
10568
Delete
Rename
Edit
Download
📄
class-wp-customize-selective-refresh.php
File
13754
Delete
Rename
Edit
Download
📄
class-wp-customize-sidebar-section.php
File
1059
Delete
Rename
Edit
Download
📄
class-wp-customize-site-icon-control.php
File
5173
Delete
Rename
Edit
Download
📄
class-wp-customize-theme-control.php
File
11889
Delete
Rename
Edit
Download
📄
class-wp-customize-themes-panel.php
File
3385
Delete
Rename
Edit
Download
📄
class-wp-customize-themes-section.php
File
6955
Delete
Rename
Edit
Download
📄
class-wp-customize-upload-control.php
File
1197
Delete
Rename
Edit
Download
📄
class-wp-sidebar-block-editor-control.php
File
686
Delete
Rename
Edit
Download
📄
class-wp-widget-area-customize-control.php
File
1719
Delete
Rename
Edit
Download
📄
class-wp-widget-form-customize-control.php
File
2646
Delete
Rename
Edit
Download
Upload
Create Folder
📝 Editing:
class-wp-customize-image-control.php
Size: 1,211 bytes
Lines: 73
Type: .php
💾 Save
Cancel
✕
<?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 { /** * Control type. * * @since 3.4.0 * @var string */ public $type = 'image'; /** * Media control mime type. * * @since 4.1.0 * @var string */ public $mime_type = '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 ) { _deprecated_function( __METHOD__, '4.1.0' ); } /** * @since 3.4.0 * @deprecated 4.1.0 * * @param string $id */ public function remove_tab( $id ) { _deprecated_function( __METHOD__, '4.1.0' ); } /** * @since 3.4.0 * @deprecated 4.1.0 * * @param string $url * @param string $thumbnail_url */ public function print_tab_image( $url, $thumbnail_url = null ) { _deprecated_function( __METHOD__, '4.1.0' ); } }
✅ File saved successfully!