PHP 8.1.33
Preview: site-editor.php Size: 7.05 KB
/home/jambtst2015/public_html/www.securiskbrokers.com/wp-admin/site-editor.php

<?php
/**
 * Site Editor administration screen.
 *
 * @package WordPress
 * @subpackage Administration
 */

global $editor_styles;

/** 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
	);
}

$is_template_part        = isset( $_GET['postType'] ) && 'wp_template_part' === sanitize_key( $_GET['postType'] );
$is_template_part_path   = isset( $_GET['path'] ) && 'wp_template_partall' === sanitize_key( $_GET['path'] );
$is_template_part_editor = $is_template_part || $is_template_part_path;
$is_patterns             = isset( $_GET['postType'] ) && 'wp_block' === sanitize_key( $_GET['postType'] );
$is_patterns_path        = isset( $_GET['path'] ) && 'patterns' === sanitize_key( $_GET['path'] );
$is_patterns_editor      = $is_patterns || $is_patterns_path;

if ( ! wp_is_block_theme() ) {
	if ( ! current_theme_supports( 'block-template-parts' ) && $is_template_part_editor ) {
		wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
	} elseif ( ! $is_patterns_editor && ! $is_template_part_editor ) {
		wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
	}
}

// Used in the HTML title tag.
$title       = _x( 'Editor', 'site editor title tag' );
$parent_file = 'themes.php';

// Flag that we're loading the block editor.
$current_screen = get_current_screen();
$current_screen->is_block_editor( true );

// Default to is-fullscreen-mode to avoid jumps in the UI.
add_filter(
	'admin_body_class',
	static function ( $classes ) {
		return "$classes is-fullscreen-mode";
	}
);

$indexed_template_types = array();
foreach ( get_default_block_template_types() as $slug => $template_type ) {
	$template_type['slug']    = (string) $slug;
	$indexed_template_types[] = $template_type;
}

$block_editor_context = new WP_Block_Editor_Context( array( 'name' => 'core/edit-site' ) );
$custom_settings      = array(
	'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_has_theme_json(),
	'supportsTemplatePartsMode' => ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ),
);

// 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 );

$editor_settings = get_block_editor_settings( $custom_settings, $block_editor_context );

if ( isset( $_GET['postType'] ) && ! isset( $_GET['postId'] ) ) {
	$post_type = get_post_type_object( $_GET['postType'] );
	if ( ! $post_type ) {
		wp_die( __( 'Invalid post type.' ) );
	}
}

$active_global_styles_id = WP_Theme_JSON_Resolver::get_user_global_styles_post_id();
$active_theme            = get_stylesheet();

$navigation_rest_route = rest_get_route_for_post_type_items(
	'wp_navigation'
);

$preload_paths = array(
	array( rest_get_route_for_post_type_items( 'attachment' ), 'OPTIONS' ),
	array( rest_get_route_for_post_type_items( 'page' ), 'OPTIONS' ),
	'/wp/v2/types?context=view',
	'/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',
	array( '/wp/v2/global-styles/' . $active_global_styles_id, 'OPTIONS' ),
	'/wp/v2/global-styles/themes/' . $active_theme . '?context=view',
	'/wp/v2/global-styles/themes/' . $active_theme . '/variations?context=view',
	array( $navigation_rest_route, 'OPTIONS' ),
	array(
		add_query_arg(
			array(
				'context'   => 'edit',
				'per_page'  => 100,
				'order'     => 'desc',
				'orderby'   => 'date',
				// array indices are required to avoid query being encoded and not matching in cache.
				'status[0]' => 'publish',
				'status[1]' => 'draft',
			),
			$navigation_rest_route
		),
		'GET',
	),
);

block_editor_rest_api_preload( $preload_paths, $block_editor_context );

wp_add_inline_script(
	'wp-edit-site',
	sprintf(
		'wp.domReady( function() {
			wp.editSite.initializeEditor( "site-editor", %s );
		} );',
		wp_json_encode( $editor_settings )
	)
);

// Preload server-registered block schemas.
wp_add_inline_script(
	'wp-blocks',
	'wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings() ) . ');'
);

// Preload server-registered block bindings sources.
$registered_sources = get_all_registered_block_bindings_sources();
if ( ! empty( $registered_sources ) ) {
	$filtered_sources = array();
	foreach ( $registered_sources as $source ) {
		$filtered_sources[] = array(
			'name'        => $source->name,
			'label'       => $source->label,
			'usesContext' => $source->uses_context,
		);
	}
	$script = sprintf( 'for ( const source of %s ) { wp.blocks.registerBlockBindingsSource( source ); }', wp_json_encode( $filtered_sources ) );
	wp_add_inline_script(
		'wp-blocks',
		$script
	);
}

wp_add_inline_script(
	'wp-blocks',
	sprintf( 'wp.blocks.setCategories( %s );', wp_json_encode( isset( $editor_settings['blockCategories'] ) ? $editor_settings['blockCategories'] : array() ) ),
	'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 class="edit-site" id="site-editor">
	<?php // JavaScript is disabled. ?>
	<div class="wrap hide-if-js site-editor-no-js">
		<h1 class="wp-heading-inline"><?php _e( 'Edit site' ); ?></h1>
		<?php
		/**
		 * Filters the message displayed in the site editor interface when JavaScript is
		 * not enabled in the browser.
		 *
		 * @since 6.3.0
		 *
		 * @param string  $message The message being displayed.
		 * @param WP_Post $post    The post being edited.
		 */
		$message = apply_filters( 'site_editor_no_javascript_message', __( 'The site editor requires JavaScript. Please enable JavaScript in your browser settings.' ), $post );
		wp_admin_notice(
			$message,
			array(
				'type'               => 'error',
				'additional_classes' => array( 'hide-if-js' ),
			)
		);
		?>
	</div>
</div>

<?php

require_once ABSPATH . 'wp-admin/admin-footer.php';

Directory Contents

Dirs: 7 × Files: 94

Name Size Perms Modified Actions
css DIR
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
images DIR
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
includes DIR
- drwxr-xr-x 2025-10-17 03:02:14
Edit Download
js DIR
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
maint DIR
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
network DIR
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
user DIR
- drwxr-xr-x 2024-12-09 13:54:39
Edit Download
17.64 KB lrw-r--r-- 2025-09-30 21:31:58
Edit Download
5.03 KB lrw-r--r-- 2024-07-04 15:22:14
Edit Download
2.77 KB lrw-r--r-- 2024-09-26 19:41:14
Edit Download
406 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
8.86 KB lrw-r--r-- 2024-09-08 02:44:18
Edit Download
2.02 KB lrw-r--r-- 2024-05-01 22:01:12
Edit Download
12.27 KB lrw-r--r-- 2024-09-03 22:19:14
Edit Download
4.74 KB lrw-r--r-- 2024-12-19 01:58:16
Edit Download
10.09 KB lrw-r--r-- 2023-09-14 04:54:20
Edit Download
11.35 KB lrw-r--r-- 2024-05-01 22:01:12
Edit Download
5.59 KB lrw-r--r-- 2024-02-27 04:51:12
Edit Download
3.75 KB lrw-r--r-- 2024-02-27 04:51:12
Edit Download
416 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
426 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
10.87 KB lrw-r--r-- 2024-07-24 20:23:18
Edit Download
14.38 KB lrw-r--r-- 2023-09-17 19:33:18
Edit Download
28.86 KB lrw-r--r-- 2024-10-07 20:57:16
Edit Download
12.96 KB lrw-r--r-- 2024-10-30 02:55:18
Edit Download
8.34 KB lrw-r--r-- 2023-02-07 22:10:22
Edit Download
6.21 KB lrw-r--r-- 2023-09-14 06:15:18
Edit Download
10.44 KB lrw-r--r-- 2024-08-20 21:50:16
Edit Download
22.00 KB lrw-r--r-- 2025-02-04 08:26:20
Edit Download
19.48 KB lrw-r--r-- 2024-10-04 02:46:16
Edit Download
7.33 KB lrw-r--r-- 2024-04-18 00:21:16
Edit Download
2.78 KB lrw-r--r-- 2025-10-22 20:59:09
Edit Download
7.75 KB lrw-r--r-- 2024-04-18 00:21:16
Edit Download
11.02 KB lrw-r--r-- 2024-05-27 00:51:14
Edit Download
4.50 KB lrw-r--r-- 2024-02-27 04:51:12
Edit Download
7.48 KB lrw-r--r-- 2024-02-27 01:35:08
Edit Download
7.68 KB lrw-r--r-- 2023-09-14 04:54:20
Edit Download
6.80 KB lrw-r--r-- 2022-11-20 19:10:16
Edit Download
17.10 KB lrw-r--r-- 2024-09-17 04:03:54
Edit Download
938 B lrw-r--r-- 2024-05-01 22:01:12
Edit Download
4.26 KB lrw-r--r-- 2023-09-14 06:15:18
Edit Download
2.63 KB lrw-r--r-- 2024-06-14 00:50:14
Edit Download
2.89 KB lrw-r--r-- 2024-05-01 22:01:12
Edit Download
2.02 KB lrw-r--r-- 2024-08-26 03:48:14
Edit Download
2.92 KB lrw-r--r-- 2024-11-05 04:36:16
Edit Download
3.18 KB lrw-r--r-- 2023-02-23 15:38:22
Edit Download
3.49 KB lrw-r--r-- 2023-09-07 18:59:22
Edit Download
819 B lrw-r--r-- 2024-05-01 22:01:12
Edit Download
9.83 KB lrw-r--r-- 2024-06-20 23:41:16
Edit Download
16.67 KB lrw-r--r-- 2024-10-04 02:46:16
Edit Download
307 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
196 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
4.19 KB lrw-r--r-- 2024-09-03 22:19:14
Edit Download
216 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
229 B lrw-r--r-- 2024-06-22 15:47:16
Edit Download
215 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
217 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
219 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
215 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
4.74 KB lrw-r--r-- 2023-09-05 23:26:26
Edit Download
48.12 KB lrw-r--r-- 2024-10-21 23:55:16
Edit Download
5.39 KB lrw-r--r-- 2024-03-09 03:38:08
Edit Download
15.40 KB lrw-r--r-- 2024-10-04 01:28:18
Edit Download
21.51 KB lrw-r--r-- 2024-08-24 02:47:16
Edit Download
548 B lrw-r--r-- 2024-05-01 22:01:12
Edit Download
6.35 KB lrw-r--r-- 2023-02-23 15:38:22
Edit Download
21.21 KB lrw-r--r-- 2024-03-09 03:38:08
Edit Download
9.95 KB lrw-r--r-- 2024-01-16 22:31:14
Edit Download
10.03 KB lrw-r--r-- 2024-05-14 22:05:12
Edit Download
9.10 KB lrw-r--r-- 2024-03-09 03:38:08
Edit Download
13.45 KB lrw-r--r-- 2024-09-02 04:13:16
Edit Download
13.42 KB lrw-r--r-- 2024-03-19 18:46:16
Edit Download
6.96 KB lrw-r--r-- 2024-02-20 12:27:06
Edit Download
30.01 KB lrw-r--r-- 2024-09-26 17:50:16
Edit Download
2.70 KB lrw-r--r-- 2024-06-15 16:34:14
Edit Download
9.97 KB lrw-r--r-- 2024-06-15 16:34:14
Edit Download
2.34 KB lrw-r--r-- 2024-02-27 01:35:08
Edit Download
3.67 KB lrw-r--r-- 2023-11-22 22:44:24
Edit Download
2.48 KB lrw-r--r-- 2024-02-27 04:51:12
Edit Download
283 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
5.71 KB lrw-r--r-- 2024-05-01 22:01:12
Edit Download
17.48 KB lrw-r--r-- 2024-09-17 04:03:54
Edit Download
7.05 KB lrw-r--r-- 2024-10-30 02:55:18
Edit Download
3.99 KB lrw-r--r-- 2024-06-03 20:56:16
Edit Download
10.20 KB lrw-r--r-- 2024-05-01 22:01:12
Edit Download
2.20 KB lrw-r--r-- 2022-06-01 22:14:10
Edit Download
15.42 KB lrw-r--r-- 2024-05-01 22:01:12
Edit Download
23.37 KB lrw-r--r-- 2024-09-15 17:49:16
Edit Download
46.95 KB lrw-r--r-- 2024-08-11 03:02:06
Edit Download
3.43 KB lrw-r--r-- 2023-02-23 15:38:22
Edit Download
45.43 KB lrw-r--r-- 2024-10-03 04:25:16
Edit Download
12.79 KB lrw-r--r-- 2024-01-30 19:23:12
Edit Download
341 B lrw-r--r-- 2020-02-06 11:33:12
Edit Download
5.57 KB lrw-r--r-- 2024-09-17 04:03:54
Edit Download
14.85 KB lrw-r--r-- 2024-03-09 23:07:16
Edit Download
39.60 KB lrw-r--r-- 2024-09-18 04:14:14
Edit Download
23.97 KB lrw-r--r-- 2024-09-09 14:17:16
Edit Download
23.29 KB lrw-r--r-- 2024-06-25 17:54:14
Edit Download
4.97 KB lrw-r--r-- 2024-10-15 12:52:18
Edit Download
19.17 KB lrw-r--r-- 2024-01-16 22:31:14
Edit Download
1.09 KB lrw-r--r-- 2022-03-22 23:59:04
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).