'9.0.0', 'system_post_update_add_region_to_entity_displays' => '9.0.0', 'system_post_update_hashes_clear_cache' => '9.0.0', 'system_post_update_timestamp_plugins' => '9.0.0', 'system_post_update_classy_message_library' => '9.0.0', 'system_post_update_field_type_plugins' => '9.0.0', 'system_post_update_field_formatter_entity_schema' => '9.0.0', 'system_post_update_fix_jquery_extend' => '9.0.0', 'system_post_update_change_action_plugins' => '9.0.0', 'system_post_update_change_delete_action_plugins' => '9.0.0', 'system_post_update_language_item_callback' => '9.0.0', 'system_post_update_extra_fields' => '9.0.0', 'system_post_update_states_clear_cache' => '9.0.0', 'system_post_update_add_expand_all_items_key_in_system_menu_block' => '9.0.0', 'system_post_update_clear_menu_cache' => '9.0.0', 'system_post_update_layout_plugin_schema_change' => '9.0.0', 'system_post_update_entity_reference_autocomplete_match_limit' => '9.0.0', 'system_post_update_extra_fields_form_display' => '10.0.0', 'system_post_update_uninstall_simpletest' => '10.0.0', 'system_post_update_uninstall_entity_reference_module' => '10.0.0', 'system_post_update_entity_revision_metadata_bc_cleanup' => '10.0.0', 'system_post_update_uninstall_classy' => '10.0.0', 'system_post_update_uninstall_stable' => '10.0.0', 'system_post_update_claro_dropbutton_variants' => '10.0.0', 'system_post_update_schema_version_int' => '10.0.0', 'system_post_update_delete_rss_settings' => '10.0.0', 'system_post_update_remove_key_value_expire_all_index' => '10.0.0', 'system_post_update_service_advisory_settings' => '10.0.0', 'system_post_update_delete_authorize_settings' => '10.0.0', 'system_post_update_sort_all_config' => '10.0.0', ]; } /** * Enable the modules that are providing the listed database drivers. */ function system_post_update_enable_provider_database_driver() { $modules_to_install = []; foreach (Database::getAllConnectionInfo() as $targets) { foreach ($targets as $target) { // Provider determination taken from Connection::getProvider(). [$first, $second] = explode('\\', $target['namespace'] ?? '', 3); $provider = ($first === 'Drupal' && strtolower($second) === $second) ? $second : 'core'; if ($provider !== 'core' && !\Drupal::moduleHandler()->moduleExists($provider)) { $autoload = $target['autoload'] ?? ''; // We are only enabling the module for database drivers that are // provided by a module. if (str_contains($autoload, 'src/Driver/Database/')) { $modules_to_install[$provider] = TRUE; } } } } if ($modules_to_install !== []) { \Drupal::service('module_installer')->install(array_keys($modules_to_install)); } }