UserLangcode.php

Same filename in this branch
  1. 11.x core/modules/user/src/Plugin/migrate/process/UserLangcode.php
Same filename and directory in other branches
  1. 10 core/modules/user/src/Plugin/migrate/process/UserLangcode.php
  2. 9 core/modules/user/src/Plugin/migrate/process/UserLangcode.php
  3. 8.9.x core/modules/user/src/Plugin/migrate/process/UserLangcode.php
  4. main core/modules/user/src/Plugin/migrate/process/UserLangcode.php
  5. main core/modules/migrate/src/Plugin/migrate/process/UserLangcode.php

Namespace

Drupal\migrate\Plugin\migrate\process

File

core/modules/migrate/src/Plugin/migrate/process/UserLangcode.php

View source
<?php

namespace Drupal\migrate\Plugin\migrate\process;

use Drupal\Core\Language\LanguageManager;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\migrate\Attribute\MigrateProcess;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;
use Symfony\Component\DependencyInjection\Attribute\Autowire;

/**
 * Provides a process plugin for the user langcode.
 */
class UserLangcode extends ProcessPluginBase implements ContainerFactoryPluginInterface {
  public function __construct(array $configuration, $plugin_id, $plugin_definition, #[Autowire(service: 'language_manager')] protected LanguageManager $languageManager) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
  }
  
  /**
   * {@inheritdoc}
   */
  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $this->configuration += [
      'fallback_to_site_default' => TRUE,
    ];
    // If the user's language is empty, then default to English and set the
    // user's preferred_langcode and preferred_admin_langcode to the default
    // language.
    if (empty($value)) {
      return $this->configuration['fallback_to_site_default'] ? $this->languageManager
        ->getDefaultLanguage()
        ->getId() : 'en';
    }
    elseif ($this->languageManager
      ->getLanguage($value) === NULL) {
      return $this->languageManager
        ->getDefaultLanguage()
        ->getId();
    }
    // If the langcode is a valid one, then just return it.
    return $value;
  }

}

Classes

Title Deprecated Summary
UserLangcode Provides a process plugin for the user langcode.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.