site-editor.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <?php
  2. /**
  3. * Site Editor administration screen.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. global $editor_styles;
  9. /** WordPress Administration Bootstrap */
  10. require_once __DIR__ . '/admin.php';
  11. if ( ! current_user_can( 'edit_theme_options' ) ) {
  12. wp_die(
  13. '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
  14. '<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
  15. 403
  16. );
  17. }
  18. if ( ! ( current_theme_supports( 'block-template-parts' ) || wp_is_block_theme() ) ) {
  19. wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
  20. }
  21. $is_template_part_editor = isset( $_GET['postType'] ) && 'wp_template_part' === sanitize_key( $_GET['postType'] );
  22. if ( ! wp_is_block_theme() && ! $is_template_part_editor ) {
  23. wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
  24. }
  25. /**
  26. * Do a server-side redirection if missing `postType` and `postId`
  27. * query args when visiting Site Editor.
  28. */
  29. $home_template = _resolve_home_block_template();
  30. if ( $home_template && empty( $_GET['postType'] ) && empty( $_GET['postId'] ) ) {
  31. if ( ! empty( $_GET['styles'] ) ) {
  32. $home_template['styles'] = sanitize_key( $_GET['styles'] );
  33. }
  34. $redirect_url = add_query_arg(
  35. $home_template,
  36. admin_url( 'site-editor.php' )
  37. );
  38. wp_safe_redirect( $redirect_url );
  39. exit;
  40. }
  41. // Used in the HTML title tag.
  42. $title = __( 'Editor (beta)' );
  43. $parent_file = 'themes.php';
  44. // Flag that we're loading the block editor.
  45. $current_screen = get_current_screen();
  46. $current_screen->is_block_editor( true );
  47. // Default to is-fullscreen-mode to avoid jumps in the UI.
  48. add_filter(
  49. 'admin_body_class',
  50. static function( $classes ) {
  51. return "$classes is-fullscreen-mode";
  52. }
  53. );
  54. $indexed_template_types = array();
  55. foreach ( get_default_block_template_types() as $slug => $template_type ) {
  56. $template_type['slug'] = (string) $slug;
  57. $indexed_template_types[] = $template_type;
  58. }
  59. $block_editor_context = new WP_Block_Editor_Context( array( 'name' => 'core/edit-site' ) );
  60. $custom_settings = array(
  61. 'siteUrl' => site_url(),
  62. 'postsPerPage' => get_option( 'posts_per_page' ),
  63. 'styles' => get_block_editor_theme_styles(),
  64. 'defaultTemplateTypes' => $indexed_template_types,
  65. 'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(),
  66. 'supportsLayout' => WP_Theme_JSON_Resolver::theme_has_support(),
  67. 'supportsTemplatePartsMode' => ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ),
  68. '__unstableHomeTemplate' => $home_template,
  69. );
  70. /**
  71. * Home template resolution is not needed when block template parts are supported.
  72. * Set the value to `true` to satisfy the editor initialization guard clause.
  73. */
  74. if ( $custom_settings['supportsTemplatePartsMode'] ) {
  75. $custom_settings['__unstableHomeTemplate'] = true;
  76. }
  77. // Add additional back-compat patterns registered by `current_screen` et al.
  78. $custom_settings['__experimentalAdditionalBlockPatterns'] = WP_Block_Patterns_Registry::get_instance()->get_all_registered( true );
  79. $custom_settings['__experimentalAdditionalBlockPatternCategories'] = WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered( true );
  80. $editor_settings = get_block_editor_settings( $custom_settings, $block_editor_context );
  81. if ( isset( $_GET['postType'] ) && ! isset( $_GET['postId'] ) ) {
  82. $post_type = get_post_type_object( $_GET['postType'] );
  83. if ( ! $post_type ) {
  84. wp_die( __( 'Invalid post type.' ) );
  85. }
  86. }
  87. $active_global_styles_id = WP_Theme_JSON_Resolver::get_user_global_styles_post_id();
  88. $active_theme = get_stylesheet();
  89. $preload_paths = array(
  90. array( '/wp/v2/media', 'OPTIONS' ),
  91. '/wp/v2/types?context=view',
  92. '/wp/v2/types/wp_template?context=edit',
  93. '/wp/v2/types/wp_template-part?context=edit',
  94. '/wp/v2/templates?context=edit&per_page=-1',
  95. '/wp/v2/template-parts?context=edit&per_page=-1',
  96. '/wp/v2/themes?context=edit&status=active',
  97. '/wp/v2/global-styles/' . $active_global_styles_id . '?context=edit',
  98. '/wp/v2/global-styles/' . $active_global_styles_id,
  99. '/wp/v2/global-styles/themes/' . $active_theme,
  100. );
  101. block_editor_rest_api_preload( $preload_paths, $block_editor_context );
  102. wp_add_inline_script(
  103. 'wp-edit-site',
  104. sprintf(
  105. 'wp.domReady( function() {
  106. wp.editSite.initializeEditor( "site-editor", %s );
  107. } );',
  108. wp_json_encode( $editor_settings )
  109. )
  110. );
  111. // Preload server-registered block schemas.
  112. wp_add_inline_script(
  113. 'wp-blocks',
  114. 'wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings() ) . ');'
  115. );
  116. wp_add_inline_script(
  117. 'wp-blocks',
  118. sprintf( 'wp.blocks.setCategories( %s );', wp_json_encode( isset( $editor_settings['blockCategories'] ) ? $editor_settings['blockCategories'] : array() ) ),
  119. 'after'
  120. );
  121. wp_enqueue_script( 'wp-edit-site' );
  122. wp_enqueue_script( 'wp-format-library' );
  123. wp_enqueue_style( 'wp-edit-site' );
  124. wp_enqueue_style( 'wp-format-library' );
  125. wp_enqueue_media();
  126. if (
  127. current_theme_supports( 'wp-block-styles' ) ||
  128. ( ! is_array( $editor_styles ) || count( $editor_styles ) === 0 )
  129. ) {
  130. wp_enqueue_style( 'wp-block-library-theme' );
  131. }
  132. /** This action is documented in wp-admin/edit-form-blocks.php */
  133. do_action( 'enqueue_block_editor_assets' );
  134. require_once ABSPATH . 'wp-admin/admin-header.php';
  135. ?>
  136. <div id="site-editor" class="edit-site"></div>
  137. <?php
  138. require_once ABSPATH . 'wp-admin/admin-footer.php';