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.' ) );
|
|
|
|
}
|
|
|
|
|
2021-12-14 02:57:26 +01:00
|
|
|
// Used in the HTML title tag.
|
2023-02-07 19:52:18 +01:00
|
|
|
$title = _x( 'Editor', 'site editor title tag' );
|
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(),
|
Themes: Introduce wp_theme_has_theme_json() for public consumption.
Adds `wp_theme_has_theme_json()` for public consumption, to replace the private internal Core-only `WP_Theme_JSON_Resolver::theme_has_support()` method. This new global function checks if a theme or its parent has a `theme.json` file.
For performance, results are cached as an integer `1` or `0` in the `'theme_json'` group with `'wp_theme_has_theme_json'` key. This is a non-persistent cache. Why? To make the derived data from `theme.json` is always fresh from the potential modifications done via hooks that can use dynamic data (modify the stylesheet depending on some option, settings depending on user permissions, etc.).
Also adds a new public function `wp_clean_theme_json_cache()` to clear the cache on `'switch_theme'` and `start_previewing_theme'`.
References:
* [https://github.com/WordPress/gutenberg/pull/45168 Gutenberg PR 45168] Add `wp_theme_has_theme_json` as a public API to know whether a theme has a `theme.json`.
* [https://github.com/WordPress/gutenberg/pull/45380 Gutenberg PR 45380] Deprecate `WP_Theme_JSON_Resolver:theme_has_support()`.
* [https://github.com/WordPress/gutenberg/pull/46150 Gutenberg PR 46150] Make `theme.json` object caches non-persistent.
* [https://github.com/WordPress/gutenberg/pull/45979 Gutenberg PR 45979] Don't check if constants set by `wp_initial_constants()` are defined.
* [https://github.com/WordPress/gutenberg/pull/45950 Gutenberg PR 45950] Cleaner logic in `wp_theme_has_theme_json`.
Follow-up to [54493], [53282], [52744], [52049], [50959].
Props oandregal, afragen, alexstine, aristath, azaozz, costdev, flixos90, hellofromTonya, mamaduka, mcsf, ocean90, spacedmonkey.
Fixes #56975.
Built from https://develop.svn.wordpress.org/trunk@55086
git-svn-id: http://core.svn.wordpress.org/trunk@54619 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-01-18 12:40:10 +01:00
|
|
|
'supportsLayout' => wp_theme_has_theme_json(),
|
2022-09-15 14:20:09 +02:00
|
|
|
'supportsTemplatePartsMode' => ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ),
|
2021-11-09 03:17:17 +01:00
|
|
|
);
|
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 (
|
Editor: Fix 'wp-block-library-theme' style enqueue conditions.
Fixes the conditions for when to enqueue the opinionated block styles (i.e. `'wp-block-library-theme'` stylesheet):
* the theme adds `'wp-block-styles'` theme support;
* and no editor styles are declared.
This resolves an issue with themes that do not add the `'wp-block-styles'` theme support while not impacting themes that do.
Follow-up to [53419], [52069], [50761], [44157].
Props mikachan, costdev, glendaviesnz, hellofromTonya, jffng, mamaduka, ndiego, poena, sannevndrmeulen, scruffian.
Fixes #57561.
Built from https://develop.svn.wordpress.org/trunk@55368
git-svn-id: http://core.svn.wordpress.org/trunk@54901 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-20 22:13:27 +01:00
|
|
|
current_theme_supports( 'wp-block-styles' ) &&
|
2021-11-09 03:17:17 +01:00
|
|
|
( ! 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';
|