wppaste
WordPress

apply_filters( 'options-connectors_boot_dependencies', array $boot_dependencies )

Filters the boot script-module dependencies for the options-connectors page.

Description

Surfaces extending this page can append entries to the boot dependency list. Each entry is an array with 'import' (string 'static' or 'dynamic') and 'id' (script-module handle) keys.

Compatibility

WordPress
core
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in 1 of the 5 tracked releases.

Parameters

$boot_dependenciesarray
Boot dependencies for the page.

Where this hook fires · 1

  • wp-includes/build/pages/options-connectors/page.php:225wp_options_connectors_render_page()

Source code

		 * Surfaces extending this page can append entries to the boot		 * dependency list. Each entry is an array with 'import' (string		 * 'static' or 'dynamic') and 'id' (script-module handle) keys.		 *		 * @param array $boot_dependencies Boot dependencies for the page.		 */		$boot_dependencies = apply_filters(			'options-connectors_boot_dependencies',			$boot_dependencies		); 		// Dummy script module to ensure dependencies are loaded		wp_register_script_module(

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.