Priority File Manager
📁 public_html
Base Directory:
/home/toolrmtm/crazyespresso.com
/home/toolrmtm/crazyespresso.com/wp-content/plugins
/home/toolrmtm/crazyespresso.com/wp-content
/home/toolrmtm
/home
/home/toolrmtm/public_html
/var/www
/var/www/cgi-bin
/var/www/html
crazyespresso.com
/
wp-includes
/
customize
/home/toolrmtm/crazyespresso.com/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
3209
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
5284
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
8029
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
9405
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
13843
Delete
Rename
Edit
Download
📄
class-wp-customize-sidebar-section.php
File
1059
Delete
Rename
Edit
Download
📄
class-wp-customize-site-icon-control.php
File
5163
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-widget-area-customize-control.php
Size: 1,719 bytes
Lines: 72
Type: .php
💾 Save
Cancel
✕
<?php /** * Customize API: WP_Widget_Area_Customize_Control class * * @package WordPress * @subpackage Customize * @since 4.4.0 */ /** * Widget Area Customize Control class. * * @since 3.9.0 * * @see WP_Customize_Control */ class WP_Widget_Area_Customize_Control extends WP_Customize_Control { /** * Customize control type. * * @since 3.9.0 * @var string */ public $type = 'sidebar_widgets'; /** * Sidebar ID. * * @since 3.9.0 * @var int|string */ public $sidebar_id; /** * Refreshes the parameters passed to the JavaScript via JSON. * * @since 3.9.0 */ public function to_json() { parent::to_json(); $exported_properties = array( 'sidebar_id' ); foreach ( $exported_properties as $key ) { $this->json[ $key ] = $this->$key; } } /** * Renders the control's content. * * @since 3.9.0 */ public function render_content() { $id = 'reorder-widgets-desc-' . str_replace( array( '[', ']' ), array( '-', '' ), $this->id ); ?> <button type="button" class="button add-new-widget" aria-expanded="false" aria-controls="available-widgets"> <?php _e( 'Add a Widget' ); ?> </button> <button type="button" class="button-link reorder-toggle" aria-label="<?php esc_attr_e( 'Reorder widgets' ); ?>" aria-describedby="<?php echo esc_attr( $id ); ?>"> <span class="reorder"><?php _e( 'Reorder' ); ?></span> <span class="reorder-done"><?php _e( 'Done' ); ?></span> </button> <p class="screen-reader-text" id="<?php echo esc_attr( $id ); ?>"> <?php /* translators: Hidden accessibility text. */ _e( 'When in reorder mode, additional controls to reorder widgets will be available in the widgets list above.' ); ?> </p> <?php } }
✅ File saved successfully!