2021-11-09 03:17:17 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Site Editor administration screen.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2022-07-27 14:27:16 +02:00
|
|
|
global $editor_styles;
|
2021-11-09 03:17:17 +01:00
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
|
|
|
require_once __DIR__ . '/admin.php';
|
|
|
|
|
|
|
|
if ( ! current_user_can( 'edit_theme_options' ) ) {
|
|
|
|
wp_die(
|
|
|
|
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
|
|
|
|
'<p>' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>',
|
|
|
|
403
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-15 14:20:09 +02:00
|
|
|
if ( ! ( current_theme_supports( 'block-template-parts' ) || wp_is_block_theme() ) ) {
|
2022-11-10 10:40:16 +01:00
|
|
|
wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
|
2021-11-09 03:17:17 +01:00
|
|
|
}
|
|
|
|
|
2022-09-15 14:20:09 +02:00
|
|
|
$is_template_part_editor = isset( $_GET['postType'] ) && 'wp_template_part' === sanitize_key( $_GET['postType'] );
|
|
|
|
if ( ! wp_is_block_theme() && ! $is_template_part_editor ) {
|
|
|
|
wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
|
|
|
|
}
|
|
|
|
|
2022-04-07 15:35:02 +02:00
|
|
|
/**
|
|
|
|
* Do a server-side redirection if missing `postType` and `postId`
|
|
|
|
* query args when visiting Site Editor.
|
|
|
|
*/
|
|
|
|
$home_template = _resolve_home_block_template();
|
|
|
|
if ( $home_template && empty( $_GET['postType'] ) && empty( $_GET['postId'] ) ) {
|
2022-05-19 04:27:13 +02:00
|
|
|
if ( ! empty( $_GET['styles'] ) ) {
|
|
|
|
$home_template['styles'] = sanitize_key( $_GET['styles'] );
|
|
|
|
}
|
2022-04-07 15:35:02 +02:00
|
|
|
$redirect_url = add_query_arg(
|
|
|
|
$home_template,
|
|
|
|
admin_url( 'site-editor.php' )
|
|
|
|
);
|
|
|
|
wp_safe_redirect( $redirect_url );
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2021-12-14 02:57:26 +01:00
|
|
|
// Used in the HTML title tag.
|
|
|
|
$title = __( 'Editor (beta)' );
|
2021-11-09 03:17:17 +01:00
|
|
|
$parent_file = 'themes.php';
|
|
|
|
|
|
|
|
// Flag that we're loading the block editor.
|
|
|
|
$current_screen = get_current_screen();
|
|
|
|
$current_screen->is_block_editor( true );
|
|
|
|
|
2021-11-09 10:14:02 +01:00
|
|
|
// Default to is-fullscreen-mode to avoid jumps in the UI.
|
|
|
|
add_filter(
|
|
|
|
'admin_body_class',
|
|
|
|
static function( $classes ) {
|
|
|
|
return "$classes is-fullscreen-mode";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-12-07 17:40:01 +01:00
|
|
|
$indexed_template_types = array();
|
|
|
|
foreach ( get_default_block_template_types() as $slug => $template_type ) {
|
|
|
|
$template_type['slug'] = (string) $slug;
|
|
|
|
$indexed_template_types[] = $template_type;
|
|
|
|
}
|
|
|
|
|
2022-03-17 04:37:05 +01:00
|
|
|
$block_editor_context = new WP_Block_Editor_Context( array( 'name' => 'core/edit-site' ) );
|
2021-11-23 06:40:38 +01:00
|
|
|
$custom_settings = array(
|
2022-09-15 14:20:09 +02:00
|
|
|
'siteUrl' => site_url(),
|
|
|
|
'postsPerPage' => get_option( 'posts_per_page' ),
|
|
|
|
'styles' => get_block_editor_theme_styles(),
|
|
|
|
'defaultTemplateTypes' => $indexed_template_types,
|
|
|
|
'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(),
|
|
|
|
'supportsLayout' => WP_Theme_JSON_Resolver::theme_has_support(),
|
|
|
|
'supportsTemplatePartsMode' => ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ),
|
|
|
|
'__unstableHomeTemplate' => $home_template,
|
2021-11-09 03:17:17 +01:00
|
|
|
);
|
2022-05-17 16:38:14 +02:00
|
|
|
|
2022-09-15 14:20:09 +02:00
|
|
|
/**
|
|
|
|
* Home template resolution is not needed when block template parts are supported.
|
|
|
|
* Set the value to `true` to satisfy the editor initialization guard clause.
|
|
|
|
*/
|
|
|
|
if ( $custom_settings['supportsTemplatePartsMode'] ) {
|
|
|
|
$custom_settings['__unstableHomeTemplate'] = true;
|
|
|
|
}
|
|
|
|
|
2022-05-17 16:38:14 +02:00
|
|
|
// Add additional back-compat patterns registered by `current_screen` et al.
|
|
|
|
$custom_settings['__experimentalAdditionalBlockPatterns'] = WP_Block_Patterns_Registry::get_instance()->get_all_registered( true );
|
|
|
|
$custom_settings['__experimentalAdditionalBlockPatternCategories'] = WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered( true );
|
|
|
|
|
2022-05-23 22:40:14 +02:00
|
|
|
$editor_settings = get_block_editor_settings( $custom_settings, $block_editor_context );
|
2021-11-23 06:40:38 +01:00
|
|
|
|
|
|
|
if ( isset( $_GET['postType'] ) && ! isset( $_GET['postId'] ) ) {
|
|
|
|
$post_type = get_post_type_object( $_GET['postType'] );
|
|
|
|
if ( ! $post_type ) {
|
|
|
|
wp_die( __( 'Invalid post type.' ) );
|
2021-11-12 04:55:01 +01:00
|
|
|
}
|
2021-12-14 02:57:26 +01:00
|
|
|
}
|
2021-11-12 04:55:01 +01:00
|
|
|
|
Themes: Rename public static functions in `WP_Theme_JSON_Resolver` to remove `custom_post_type` references.
WordPress Core is not really custom and does not reference "custom post type" in its function naming. This commit renames 2 public static methods:
* `WP_Theme_JSON_Resolver::get_user_custom_post_type_id()` renamed to `WP_Theme_JSON_Resolver::get_user_global_styles_post_id()`.
* `WP_Theme_JSON_Resolver::get_user_data_from_custom_post_type()` renamed to `WP_Theme_JSON_Resolver:: get_user_data_from_wp_global_styles()`.
Follow-up to [52049], [52051], [52069], [52232], [52275], [52364].
Props antonvlasenko, bernhard-reiter, costdev, desrosj, hellofromTonya, noisysocks, oandregal, SergeyBiryukov.
Fixes #54517.
Built from https://develop.svn.wordpress.org/trunk@52372
git-svn-id: http://core.svn.wordpress.org/trunk@51964 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-14 17:14:01 +01:00
|
|
|
$active_global_styles_id = WP_Theme_JSON_Resolver::get_user_global_styles_post_id();
|
2022-11-11 17:26:12 +01:00
|
|
|
$active_theme = get_stylesheet();
|
2021-12-14 02:57:26 +01:00
|
|
|
$preload_paths = array(
|
|
|
|
array( '/wp/v2/media', 'OPTIONS' ),
|
2022-04-07 15:40:04 +02:00
|
|
|
'/wp/v2/types?context=view',
|
2021-12-14 02:57:26 +01:00
|
|
|
'/wp/v2/types/wp_template?context=edit',
|
|
|
|
'/wp/v2/types/wp_template-part?context=edit',
|
|
|
|
'/wp/v2/templates?context=edit&per_page=-1',
|
|
|
|
'/wp/v2/template-parts?context=edit&per_page=-1',
|
|
|
|
'/wp/v2/themes?context=edit&status=active',
|
|
|
|
'/wp/v2/global-styles/' . $active_global_styles_id . '?context=edit',
|
|
|
|
'/wp/v2/global-styles/' . $active_global_styles_id,
|
|
|
|
'/wp/v2/global-styles/themes/' . $active_theme,
|
|
|
|
);
|
2021-11-23 06:40:38 +01:00
|
|
|
|
2021-12-14 02:57:26 +01:00
|
|
|
block_editor_rest_api_preload( $preload_paths, $block_editor_context );
|
2021-11-23 06:40:38 +01:00
|
|
|
|
2021-12-14 02:57:26 +01:00
|
|
|
wp_add_inline_script(
|
|
|
|
'wp-edit-site',
|
|
|
|
sprintf(
|
|
|
|
'wp.domReady( function() {
|
|
|
|
wp.editSite.initializeEditor( "site-editor", %s );
|
|
|
|
} );',
|
|
|
|
wp_json_encode( $editor_settings )
|
|
|
|
)
|
|
|
|
);
|
2021-11-09 03:17:17 +01:00
|
|
|
|
|
|
|
// Preload server-registered block schemas.
|
|
|
|
wp_add_inline_script(
|
|
|
|
'wp-blocks',
|
|
|
|
'wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings() ) . ');'
|
|
|
|
);
|
|
|
|
|
|
|
|
wp_add_inline_script(
|
|
|
|
'wp-blocks',
|
2022-07-27 14:27:16 +02:00
|
|
|
sprintf( 'wp.blocks.setCategories( %s );', wp_json_encode( isset( $editor_settings['blockCategories'] ) ? $editor_settings['blockCategories'] : array() ) ),
|
2021-11-09 03:17:17 +01:00
|
|
|
'after'
|
|
|
|
);
|
|
|
|
|
|
|
|
wp_enqueue_script( 'wp-edit-site' );
|
|
|
|
wp_enqueue_script( 'wp-format-library' );
|
|
|
|
wp_enqueue_style( 'wp-edit-site' );
|
|
|
|
wp_enqueue_style( 'wp-format-library' );
|
|
|
|
wp_enqueue_media();
|
|
|
|
|
|
|
|
if (
|
|
|
|
current_theme_supports( 'wp-block-styles' ) ||
|
|
|
|
( ! is_array( $editor_styles ) || count( $editor_styles ) === 0 )
|
|
|
|
) {
|
|
|
|
wp_enqueue_style( 'wp-block-library-theme' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** This action is documented in wp-admin/edit-form-blocks.php */
|
|
|
|
do_action( 'enqueue_block_editor_assets' );
|
|
|
|
|
|
|
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="site-editor" class="edit-site"></div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|