You are here

function language_modules_installed in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/language.module \language_modules_installed()
  2. 10 core/modules/language/language.module \language_modules_installed()

Implements hook_modules_installed().

1 call to language_modules_installed()
language_modules_uninstalled in core/modules/language/language.module
Implements hook_modules_uninstalled().

File

core/modules/language/language.module, line 292
Add language handling functionality to Drupal.

Code

function language_modules_installed($modules) {
  if (!in_array('language', $modules)) {

    // Since newly (un)installed modules may change the default settings for
    // non-locked language types (e.g. content language), we need to resave the
    // language type configuration.

    /** @var \Drupal\language\LanguageNegotiatorInterface $negotiator */
    $negotiator = \Drupal::service('language_negotiator');
    $configurable = \Drupal::config('language.types')
      ->get('configurable');
    $negotiator
      ->updateConfiguration($configurable);
    $negotiator
      ->purgeConfiguration();
  }
  else {

    // In language_entity_base_field_info_alter() we are altering view/form
    // display definitions to make language fields display configurable. Since
    // this is not a hard dependency, and thus is not detected by the config
    // system, we have to clean up the related values manually.
    foreach ([
      'entity_view_display',
      'entity_form_display',
    ] as $key) {
      $displays = \Drupal::entityTypeManager()
        ->getStorage($key)
        ->loadMultiple();

      /** @var \Drupal\Core\Entity\Display\EntityDisplayInterface $display */
      foreach ($displays as $display) {
        $display
          ->save();
      }
    }
  }
}