説明なし

site-editor.php 4.6KB

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