🚀 Auto Backup WP
var
/
www
/
vhosts
/
construcciondepiscinas.top
/
httpdocs
/
wp-includes
/
customize
/
Name
Size
Perm
Action
class-wp-customize-background-image-control.php
1284B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-background-image-setting.php
639B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-background-position-control.php
2960B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-color-control.php
3066B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-cropped-image-control.php
1460B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-date-time-control.php
8913B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-filter-setting.php
588B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-image-control.php
1211B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-media-control.php
9384B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-nav-menu-control.php
2066B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-nav-menu-locations-control.php
2797B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-nav-menu-section.php
716B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-nav-menu-setting.php
18936B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-nav-menus-panel.php
3083B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-new-menu-control.php
1710B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-new-menu-section.php
1693B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-partial.php
10568B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-selective-refresh.php
13731B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-sidebar-section.php
1059B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-site-icon-control.php
3287B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-theme-control.php
11512B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-themes-panel.php
3237B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-customize-themes-section.php
6756B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-sidebar-block-editor-control.php
686B
-rw-r--r--
🗑️
✏️
📝
🔧
class-wp-widget-area-customize-control.php
1657B
-rw-r--r--
🗑️
✏️
📝
🔧
<?php /** * Customize API: WP_Sidebar_Block_Editor_Control class. * * @package WordPress * @subpackage Customize * @since 5.8.0 */ /** * Core class used to implement the widgets block editor control in the * customizer. * * @since 5.8.0 * * @see WP_Customize_Control */ class WP_Sidebar_Block_Editor_Control extends WP_Customize_Control { /** * The control type. * * @since 5.8.0 * * @var string */ public $type = 'sidebar_block_editor'; /** * Render the widgets block editor container. * * @since 5.8.0 */ public function render_content() { // Render an empty control. The JavaScript in // @wordpress/customize-widgets will do the rest. } }
Terminal Command