You are here

public function DefaultLangcode::import in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/src/Plugin/migrate/destination/DefaultLangcode.php \Drupal\language\Plugin\migrate\destination\DefaultLangcode::import()

Import the row.

Derived classes must implement import(), to construct one new object (pre-populated) using ID mappings in the Migration.

Parameters

\Drupal\migrate\Row $row: The row object.

array $old_destination_id_values: (optional) The old destination IDs. Defaults to an empty array.

Return value

array|bool An indexed array of destination IDs in the same order as defined in the plugin's getIds() method if the plugin wants to save the IDs to the ID map, TRUE to indicate success without saving IDs to the ID map, or FALSE to indicate a failure.

Overrides Config::import

File

core/modules/language/src/Plugin/migrate/destination/DefaultLangcode.php, line 22

Class

DefaultLangcode
Provides a destination plugin for the default langcode config.

Namespace

Drupal\language\Plugin\migrate\destination

Code

public function import(Row $row, array $old_destination_id_values = []) {
  $destination = $row
    ->getDestination();
  $langcode = $destination['default_langcode'];

  // Check if the language exists.
  if (ConfigurableLanguage::load($langcode) === NULL) {
    throw new MigrateException("The language '{$langcode}' does not exist on this site.");
  }
  $this->config
    ->set('default_langcode', $destination['default_langcode']);
  $this->config
    ->save();
  return [
    $this->config
      ->getName(),
  ];
}