You are here

public function TranslationWrapper::getUntranslatedString in Service Container 7

Same name and namespace in other branches
  1. 7.2 lib/Drupal/Core/StringTranslation/TranslationWrapper.php \Drupal\Core\StringTranslation\TranslationWrapper::getUntranslatedString()

Gets the untranslated string value stored in this translation wrapper.

Return value

string The string stored in this wrapper.

File

lib/Drupal/Core/StringTranslation/TranslationWrapper.php, line 67
Contains \Drupal\Core\StringTranslation\TranslationWrapper.

Class

TranslationWrapper
Provides a class to wrap a translatable string.

Namespace

Drupal\Core\StringTranslation

Code

public function getUntranslatedString() {
  return $this->string;
}