PHP 8.2.29
Preview: script-modules.php Size: 9.68 KB
/home/medyaist/hurdamakara.com/wp-includes/script-modules.php
<?php
/**
 * Script Modules API: Script Module functions
 *
 * @since 6.5.0
 *
 * @package WordPress
 * @subpackage Script Modules
 */

/**
 * Retrieves the main WP_Script_Modules instance.
 *
 * This function provides access to the WP_Script_Modules instance, creating one
 * if it doesn't exist yet.
 *
 * @since 6.5.0
 *
 * @global WP_Script_Modules $wp_script_modules
 *
 * @return WP_Script_Modules The main WP_Script_Modules instance.
 */
function wp_script_modules(): WP_Script_Modules {
	global $wp_script_modules;

	if ( ! ( $wp_script_modules instanceof WP_Script_Modules ) ) {
		$wp_script_modules = new WP_Script_Modules();
	}

	return $wp_script_modules;
}

/**
 * Registers the script module if no script module with that script module
 * identifier has already been registered.
 *
 * @since 6.5.0
 * @since 6.9.0 Added the $args parameter.
 *
 * @param string            $id      The identifier of the script module. Should be unique. It will be used in the
 *                                   final import map.
 * @param string            $src     Optional. Full URL of the script module, or path of the script module relative
 *                                   to the WordPress root directory. If it is provided and the script module has
 *                                   not been registered yet, it will be registered.
 * @param array             $deps    {
 *                                       Optional. List of dependencies.
 *
 *                                       @type string|array ...$0 {
 *                                           An array of script module identifiers of the dependencies of this script
 *                                           module. The dependencies can be strings or arrays. If they are arrays,
 *                                           they need an `id` key with the script module identifier, and can contain
 *                                           an `import` key with either `static` or `dynamic`. By default,
 *                                           dependencies that don't contain an `import` key are considered static.
 *
 *                                           @type string $id     The script module identifier.
 *                                           @type string $import Optional. Import type. May be either `static` or
 *                                                                `dynamic`. Defaults to `static`.
 *                                       }
 *                                   }
 * @param string|false|null $version Optional. String specifying the script module version number. Defaults to false.
 *                                   It is added to the URL as a query string for cache busting purposes. If $version
 *                                   is set to false, the version number is the currently installed WordPress version.
 *                                   If $version is set to null, no version is added.
 * @param array             $args    {
 *     Optional. An array of additional args. Default empty array.
 *
 *     @type bool                $in_footer     Whether to print the script module in the footer. Only relevant to block themes. Default 'false'. Optional.
 *     @type 'auto'|'low'|'high' $fetchpriority Fetch priority. Default 'auto'. Optional.
 * }
 */
function wp_register_script_module( string $id, string $src, array $deps = array(), $version = false, array $args = array() ) {
	wp_script_modules()->register( $id, $src, $deps, $version, $args );
}

/**
 * Marks the script module to be enqueued in the page.
 *
 * If a src is provided and the script module has not been registered yet, it
 * will be registered.
 *
 * @since 6.5.0
 * @since 6.9.0 Added the $args parameter.
 *
 * @param string            $id      The identifier of the script module. Should be unique. It will be used in the
 *                                   final import map.
 * @param string            $src     Optional. Full URL of the script module, or path of the script module relative
 *                                   to the WordPress root directory. If it is provided and the script module has
 *                                   not been registered yet, it will be registered.
 * @param array             $deps    {
 *                                       Optional. List of dependencies.
 *
 *                                       @type string|array ...$0 {
 *                                           An array of script module identifiers of the dependencies of this script
 *                                           module. The dependencies can be strings or arrays. If they are arrays,
 *                                           they need an `id` key with the script module identifier, and can contain
 *                                           an `import` key with either `static` or `dynamic`. By default,
 *                                           dependencies that don't contain an `import` key are considered static.
 *
 *                                           @type string $id     The script module identifier.
 *                                           @type string $import Optional. Import type. May be either `static` or
 *                                                                `dynamic`. Defaults to `static`.
 *                                       }
 *                                   }
 * @param string|false|null $version Optional. String specifying the script module version number. Defaults to false.
 *                                   It is added to the URL as a query string for cache busting purposes. If $version
 *                                   is set to false, the version number is the currently installed WordPress version.
 *                                   If $version is set to null, no version is added.
 * @param array             $args    {
 *     Optional. An array of additional args. Default empty array.
 *
 *     @type bool                $in_footer     Whether to print the script module in the footer. Only relevant to block themes. Default 'false'. Optional.
 *     @type 'auto'|'low'|'high' $fetchpriority Fetch priority. Default 'auto'. Optional.
 * }
 */
function wp_enqueue_script_module( string $id, string $src = '', array $deps = array(), $version = false, array $args = array() ) {
	wp_script_modules()->enqueue( $id, $src, $deps, $version, $args );
}

/**
 * Unmarks the script module so it is no longer enqueued in the page.
 *
 * @since 6.5.0
 *
 * @param string $id The identifier of the script module.
 */
function wp_dequeue_script_module( string $id ) {
	wp_script_modules()->dequeue( $id );
}

/**
 * Deregisters the script module.
 *
 * @since 6.5.0
 *
 * @param string $id The identifier of the script module.
 */
function wp_deregister_script_module( string $id ) {
	wp_script_modules()->deregister( $id );
}

/**
 * Registers all the default WordPress Script Modules.
 *
 * @since 6.7.0
 */
function wp_default_script_modules() {
	$suffix = defined( 'WP_RUN_CORE_TESTS' ) ? '.min' : wp_scripts_get_suffix();

	/*
	 * Expects multidimensional array like:
	 *
	 *     'interactivity/index.min.js' => array('dependencies' => array(…), 'version' => '…'),
	 *     'interactivity/debug.min.js' => array('dependencies' => array(…), 'version' => '…'),
	 *     'interactivity-router/index.min.js' => …
	 */
	$assets = include ABSPATH . WPINC . "/assets/script-modules-packages{$suffix}.php";

	foreach ( $assets as $file_name => $script_module_data ) {
		/*
		 * Build the WordPress Script Module ID from the file name.
		 * Prepend `@wordpress/` and remove extensions and `/index` if present:
		 *   - interactivity/index.min.js  => @wordpress/interactivity
		 *   - interactivity/debug.min.js  => @wordpress/interactivity/debug
		 *   - block-library/query/view.js => @wordpress/block-library/query/view
		 */
		$script_module_id = '@wordpress/' . preg_replace( '~(?:/index)?(?:\.min)?\.js$~D', '', $file_name, 1 );

		switch ( $script_module_id ) {
			/*
			 * Interactivity exposes two entrypoints, "/index" and "/debug".
			 * "/debug" should replace "/index" in development.
			 */
			case '@wordpress/interactivity/debug':
				if ( ! SCRIPT_DEBUG ) {
					continue 2;
				}
				$script_module_id = '@wordpress/interactivity';
				break;
			case '@wordpress/interactivity':
				if ( SCRIPT_DEBUG ) {
					continue 2;
				}
				break;
		}

		/*
		 * The Interactivity API is designed with server-side rendering as its primary goal, so all of its script modules
		 * should be loaded with low fetchpriority and printed in the footer since they should not be needed in the
		 * critical rendering path. Also, the @wordpress/a11y script module is intended to be used as a dynamic import
		 * dependency, in which case the fetchpriority is irrelevant. See <https://make.wordpress.org/core/2024/10/14/updates-to-script-modules-in-6-7/>.
		 * However, in case it is added as a static import dependency, the fetchpriority is explicitly set to be 'low'
		 * since the module should not be involved in the critical rendering path, and if it is, its fetchpriority will
		 * be bumped to match the fetchpriority of the dependent script.
		 */
		$args = array();
		if (
			str_starts_with( $script_module_id, '@wordpress/interactivity' ) ||
			str_starts_with( $script_module_id, '@wordpress/block-library' ) ||
			'@wordpress/a11y' === $script_module_id
		) {
			$args['fetchpriority'] = 'low';
			$args['in_footer']     = true;
		}

		// Marks all Core blocks as compatible with client-side navigation.
		if ( str_starts_with( $script_module_id, '@wordpress/block-library' ) ) {
			wp_interactivity()->add_client_navigation_support_to_script_module( $script_module_id );
		}

		$path = includes_url( "js/dist/script-modules/{$file_name}" );
		wp_register_script_module( $script_module_id, $path, $script_module_data['dependencies'], $script_module_data['version'], $args );
	}
}

Directory Contents

Dirs: 29 × Files: 157
Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-08 20:16:39
Edit Download
assets DIR
- drwxr-xr-x 2026-01-12 19:14:21
Edit Download
- drwxr-xr-x 2026-01-13 23:39:06
Edit Download
- drwxr-xr-x 2026-01-12 17:08:40
Edit Download
- drwxr-xr-x 2026-01-13 23:39:44
Edit Download
blocks DIR
- drwxr-xr-x 2025-12-08 20:16:39
Edit Download
- drwxr-xr-x 2026-01-10 00:00:44
Edit Download
css DIR
- drwxr-xr-x 2025-12-08 20:16:40
Edit Download
customize DIR
- drwxr-xr-x 2026-01-11 16:24:47
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-10 01:21:47
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-13 22:17:35
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-12 18:31:02
Edit Download
images DIR
- drwxr-xr-x 2026-01-12 15:04:48
Edit Download
- drwxr-xr-x 2026-01-13 22:18:06
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-10 11:25:41
Edit Download
js DIR
- drwxr-xr-x 2026-01-13 23:31:25
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-14 08:18:01
Edit Download
- drwxr-xr-x 2026-01-12 08:39:48
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-13 23:43:59
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-13 22:19:44
Edit Download
Requests DIR
- drwxr-xr-x 2025-12-08 04:57:55
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-13 22:19:52
Edit Download
SimplePie DIR
- drwxr-xr-x 2025-12-08 20:16:49
Edit Download
sitemaps DIR
- drwxr-xr-x 2025-12-08 04:57:59
Edit Download
- drwxr-xr-x 2026-01-12 11:12:21
Edit Download
- drwxr-xr-x 2025-12-08 04:57:12
Edit Download
Text DIR
- drwxr-xr-x 2025-12-08 20:16:39
Edit Download
- drwxr-xr-x 2026-01-14 08:18:41
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-10 05:05:07
Edit Download
7.80 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
18.94 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
7.35 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
12.90 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
61.02 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
112.05 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
42.63 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
55.71 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
28.92 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
6.61 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
2.18 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
17.46 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
5.14 KB lrw-r--r-- 2025-12-08 04:56:47
Edit Download
16.70 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
8.28 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
2.92 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
1.32 KB lrw-r--r-- 2025-12-08 04:56:47
Edit Download
4.60 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
11.62 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
2.50 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
1.97 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
11.25 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
5.32 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
10.60 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
67.84 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
6.34 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
5.49 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
1.99 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.02 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
4.91 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
16.86 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
24.23 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
3.97 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
47.66 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
9.22 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
25.51 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
198.38 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
56.65 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
10.46 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
10.95 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
29.26 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
70.91 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
35.30 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
15.02 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
2.57 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
39.83 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
70.64 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
15.56 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
7.33 KB lrw-r--r-- 2025-12-08 04:56:48
Edit Download
253 B lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.96 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
3.23 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
969 B lrw-r--r-- 2025-12-08 20:16:46
Edit Download
16.28 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.22 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
12.95 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
6.53 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
5.84 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
1.97 KB lrw-r--r-- 2025-12-08 04:56:48
Edit Download
4.30 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
2.91 KB lrw-r--r-- 2025-12-08 04:56:48
Edit Download
16.46 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
40.60 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
20.22 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
36.11 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
17.01 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.27 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
6.62 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
16.49 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
1.79 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
29.82 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
6.67 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
8.98 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
19.42 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
12.01 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
17.11 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
6.74 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
30.93 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
4.99 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
4.25 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
24.72 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
6.34 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
159.91 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
6.72 KB lrw-r--r-- 2025-12-08 04:56:49
Edit Download
10.92 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
4.77 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
3.38 KB lrw-r--r-- 2025-12-08 04:56:49
Edit Download
11.18 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
62.19 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
2.46 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
9.17 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
31.13 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
33.38 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.15 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
3.47 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
1.87 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
30.91 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.29 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
7.35 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
11.86 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
19.12 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
18.12 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
39.99 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
5.17 KB lrw-r--r-- 2025-12-08 04:56:50
Edit Download
979 B lrw-r--r-- 2025-12-08 20:16:45
Edit Download
18.44 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
10.24 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
1.77 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
34.90 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
7.19 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
160.50 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
64.27 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
27.95 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
4.69 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
2.94 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
13.01 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
3.27 KB lrw-r--r-- 2025-12-08 04:56:50
Edit Download
18.00 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
210.40 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
25.86 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
373 B lrw-r--r-- 2025-12-08 04:56:51
Edit Download
343 B lrw-r--r-- 2025-12-08 04:56:51
Edit Download
338 B lrw-r--r-- 2025-12-08 04:56:51
Edit Download
100.73 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
11.10 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
37.02 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
2.24 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
4.02 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
226.02 KB lrw-r--r-- 2026-03-02 06:09:08
Edit Download
5.38 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
1.16 KB lrw-r--r-- 2025-12-08 04:56:51
Edit Download
4.04 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
9.56 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
281.84 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
14.95 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
8.44 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
20.71 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
5.72 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
81.72 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
25.24 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
4.81 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
6.48 KB lrw-r--r-- 2025-12-08 04:56:52
Edit Download
2.79 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
89.69 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
4.11 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
6.94 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
200 B lrw-r--r-- 2025-12-08 04:56:53
Edit Download
255 B lrw-r--r-- 2025-12-08 04:56:53
Edit Download
22.66 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
9.68 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
544 B lrw-r--r-- 2025-12-08 20:16:45
Edit Download
2.84 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
6.09 KB lrw-r--r-- 2025-12-08 20:16:46
Edit Download
6.41 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
69.46 KB lrw-r--r-- 2025-12-08 20:16:45
Edit Download
445 B lrw-r--r-- 2025-12-08 04:56:54
Edit Download
799 B lrw-r--r-- 2025-12-08 20:16:45
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).