You are here

public function ConfigNamesMapper::setLangcode in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::setLangcode()

Sets the original language code.

Parameters

string $langcode: The langcode.

Return value

$this

Overrides ConfigMapperInterface::setLangcode

File

core/modules/config_translation/src/ConfigNamesMapper.php, line 424

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function setLangcode($langcode) {
  $this->langcode = $langcode;
  return $this;
}