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-sidebar-section.php
Size: 1,059 bytes
Lines: 59
Type: .php
💾 Save
Cancel
✕
<?php /** * Customize API: WP_Customize_Sidebar_Section class * * @package WordPress * @subpackage Customize * @since 4.4.0 */ /** * Customizer section representing widget area (sidebar). * * @since 4.1.0 * * @see WP_Customize_Section */ class WP_Customize_Sidebar_Section extends WP_Customize_Section { /** * Type of this section. * * @since 4.1.0 * @var string */ public $type = 'sidebar'; /** * Unique identifier. * * @since 4.1.0 * @var string */ public $sidebar_id; /** * Gather the parameters passed to client JavaScript via JSON. * * @since 4.1.0 * * @return array The array to be exported to the client as JSON. */ public function json() { $json = parent::json(); $json['sidebarId'] = $this->sidebar_id; return $json; } /** * Whether the current sidebar is rendered on the page. * * @since 4.1.0 * * @return bool Whether sidebar is rendered. */ public function active_callback() { return $this->manager->widgets->is_sidebar_rendered( $this->sidebar_id ); } }
✅ File saved successfully!