You are here

function path_post_update_create_language_content_settings in Drupal 8

Create the language content settings configuration object for path aliases.

File

core/modules/path/path.post_update.php, line 14
Post update functions for the path module.

Code

function path_post_update_create_language_content_settings() {
  $entity_definition_update_manager = \Drupal::entityDefinitionUpdateManager();
  if ($entity_definition_update_manager
    ->getEntityType('language_content_settings')) {
    ContentLanguageSettings::loadByEntityTypeBundle('path_alias', 'path_alias')
      ->setDefaultLangcode(LanguageInterface::LANGCODE_NOT_SPECIFIED)
      ->setLanguageAlterable(TRUE)
      ->trustData()
      ->save();
  }
}