Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
/**
 * Gutenberg: Admin Asset Loading and Portability
 *
 * @package Divi
 * @since ??
 */

namespace ET\Builder\Gutenberg;

if ( ! defined( 'ABSPATH' ) ) {
	die( 'Direct access forbidden.' );
}

use ET\Builder\Framework\Utility\Conditions;
use ET\Builder\VisualBuilder\Assets\AssetsUtility;
use ET\Builder\VisualBuilder\Assets\PackageBuildManager;
use ET\Builder\VisualBuilder\ClassicEditor\ClassicEditor;

/**
 * Gutenberg Admin class.
 *
 * Handles asset loading and portability for Layout Block in the Gutenberg block editor.
 * Instantiated and initialized at the bottom of this file.
 *
 * @since ??
 */
class Admin {
	/**
	 * Initialize the class.
	 *
	 * Registers hooks for asset loading and portability.
	 *
	 * @since ??
	 *
	 * @return void
	 */
	public function initialize(): void {
		add_action( 'admin_enqueue_scripts', [ $this, 'load_visual_builder_dependencies' ] );
		add_action( 'admin_init', [ $this, 'register_portability' ] );
	}

	/**
	 * Enqueue scripts and styles on Gutenberg block editor page.
	 *
	 * Uses PackageBuildManager to enqueue D5 assets (same as old D4 implementation).
	 *
	 * @since ??
	 *
	 * @param string $hook_suffix Current admin page hook.
	 *
	 * @return void
	 */
	public function load_visual_builder_dependencies( string $hook_suffix ): void {
		if ( ! Conditions::is_block_editor() ) {
			return;
		}

		// Restrict D5 Gutenberg dependencies to post editor screens only.
		// Block-editor-powered admin screens (e.g. widgets.php) should not load these assets.
		if ( ! in_array( $hook_suffix, [ 'post.php', 'post-new.php' ], true ) ) {
			return;
		}

		// Ensure we're on a post or page post type (not other post types).
		global $typenow, $post;
		$post_type = null;
		$post_id   = null;
		// phpcs:disable WordPress.Security.NonceVerification -- Nonce verification is not required, we're only reading GET parameters for comparison.
		if ( ! empty( $typenow ) ) {
			$post_type = $typenow;
		} elseif ( isset( $_GET['post_type'] ) ) {
			$post_type = sanitize_key( $_GET['post_type'] );
		} elseif ( 'post-new.php' === $hook_suffix ) {
			// For new posts, default to 'post' if not specified.
			$post_type = 'post';
		}

		if ( isset( $_GET['post'] ) ) {
			$post_id = (int) $_GET['post'];
		} elseif ( ! empty( $post ) && isset( $post->ID ) ) {
			$post_id = $post->ID;
		}
		// phpcs:enable WordPress.Security.NonceVerification

		// Only apply fix to posts and pages when Classic Editor is disabled.
		if ( ! empty( $post_type ) && ! in_array( $post_type, [ 'post', 'page' ], true ) ) {
			return;
		}

		// Check if this post actually uses the block editor (not Classic Editor).
		if ( ! empty( $post_id ) && function_exists( 'use_block_editor_for_post' ) ) {
			if ( ! use_block_editor_for_post( $post_id ) ) {
				return;
			}
		}

		// Check if Classic Editor is enabled (either Divi's or WordPress Classic Editor plugin).
		$divi_classic_editor_enabled = ClassicEditor::is_enabled();
		$wp_classic_editor_enabled   = false;
		if ( class_exists( 'Classic_Editor' ) ) {
			$wp_classic_editor_replace_option = get_option( 'classic-editor-replace' );
			$wp_classic_editor_block_settings = [ 'block', 'no-replace' ];
			// If the option value is not set to 'block' or 'no-replace', then the Classic Editor is enabled.
			$wp_classic_editor_enabled = ! in_array( $wp_classic_editor_replace_option, $wp_classic_editor_block_settings, true );
		}
		$classic_editor_enabled = $divi_classic_editor_enabled || $wp_classic_editor_enabled;

		// Enqueue media library script so ETSelect is available in topWindow.
		et_builder_enqueue_assets_head();

		// Register vendor dependencies before PackageBuildManager enqueues scripts.
		AssetsUtility::enqueue_visual_builder_dependencies();

		// When Classic Editor is OFF and we're on posts/pages, ACF Pro needs WordPress's TinyMCE,
		// not Divi's. Register an empty script to satisfy dependencies without loading Divi's TinyMCE,
		// which avoids conflicts with wpautoresize plugin.
		if ( ! empty( $post_type ) && in_array( $post_type, [ 'post', 'page' ], true ) && ! $classic_editor_enabled ) {
			// Register empty script to satisfy dependency requirements without actually loading TinyMCE.
			wp_register_script(
				'react-tiny-mce',
				'',
				[],
				ET_BUILDER_VERSION,
				false
			);
		} else {
			// Register Divi's TinyMCE normally for other contexts.
			wp_register_script(
				'react-tiny-mce',
				ET_BUILDER_5_URI . '/visual-builder/assets/tinymce/tinymce.min.js',
				[],
				ET_BUILDER_VERSION,
				false
			);
		}

		// Use PackageBuildManager to enqueue D5 assets.
		PackageBuildManager::register_divi_package_builds();
		PackageBuildManager: