function TestConfigNamesMapper::getInternalLangcode

Gets the internal language code of this mapper, if any.

This method is not to be confused with ConfigMapperInterface::getLangcode().

Return value

string|null The language code of this mapper if it is set; NULL otherwise.

File

core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php, line 670

Class

TestConfigNamesMapper
Defines a test mapper class.

Namespace

Drupal\Tests\config_translation\Unit

Code

public function getInternalLangcode() {
  return isset($this->langcode) ? $this->langcode : NULL;
}

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