HEX
Server: nginx/1.28.1
System: Linux VM-0-12-opencloudos 6.6.117-45.oc9.x86_64 #1 SMP Thu Dec 4 10:26:39 CST 2025 x86_64
User: www (1000)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.waciwang.com/wp-content/plugins/gutenberg/build/modules.php
<?php
/**
 * Script module registration - Auto-generated by build process.
 * Do not edit this file manually.
 *
 * @package gutenberg
 */

if ( ! function_exists( 'gutenberg_register_script_modules' ) ) {
	/**
	 * Register all script modules.
	 */
	function gutenberg_register_script_modules() {
		// Load build constants
		$build_constants = require __DIR__ . '/constants.php';
		$modules_dir     = __DIR__ . '/modules';
		$modules_file    = $modules_dir . '/registry.php';

		if ( ! file_exists( $modules_file ) ) {
			return;
		}

		$modules = require $modules_file;
		$base_url = $build_constants['build_url'] . 'modules/';
		$extension = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '.js' : '.min.js';

		foreach ( $modules as $module ) {
			$asset_path = $modules_dir . '/' . $module['asset'];
			$asset = file_exists( $asset_path ) ? require $asset_path : array();

			wp_register_script_module(
				$module['id'],
				$base_url . $module['path'] . $extension,
				$asset['module_dependencies'] ?? array(),
				$asset['version'] ?? false,
				array(
					'fetchpriority' => 'low',
					'in_footer'     => true,
				)
			);
		}
	}

	add_action( 'wp_default_scripts', 'gutenberg_register_script_modules' );
	remove_action( 'wp_default_scripts', 'wp_default_script_modules' );
}