d48e5309f57e811e38322f">30f7226d9a first commit %!s(int64=2) %!d(string=hace) años sortablejs 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años source-map 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años source-map-js 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años string-width 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años strip-ansi 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años sucrase 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años supports-preserve-symlinks-flag 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tailwind-color-palette 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tailwindcss 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años thenify 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años thenify-all 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años to-regex-range 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tr46 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años ts-interface-checker 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años uglify-js 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años underscore 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años upper-case 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años util-deprecate 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años valid-data-url 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años web-resource-inliner 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años webidl-conversions 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años whatwg-url 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años wrap-ansi 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años wrappy 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años y18n 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yallist 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yaml 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yargs 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yargs-parser 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años .yarn-integrity 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tum/whitesports - Gogs: Simplico Git Service

暫無描述

class-wp-sidebar-block-editor-control.php 686B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * Customize API: WP_Sidebar_Block_Editor_Control class.
  4. *
  5. * @package WordPress
  6. * @subpackage Customize
  7. * @since 5.8.0
  8. */
  9. /**
  10. * Core class used to implement the widgets block editor control in the
  11. * customizer.
  12. *
  13. * @since 5.8.0
  14. *
  15. * @see WP_Customize_Control
  16. */
  17. class WP_Sidebar_Block_Editor_Control extends WP_Customize_Control {
  18. /**
  19. * The control type.
  20. *
  21. * @since 5.8.0
  22. *
  23. * @var string
  24. */
  25. public $type = 'sidebar_block_editor';
  26. /**
  27. * Render the widgets block editor container.
  28. *
  29. * @since 5.8.0
  30. */
  31. public function render_content() {
  32. // Render an empty control. The JavaScript in
  33. // @wordpress/customize-widgets will do the rest.
  34. }
  35. }