protected TranslatableMarkup::getStringTranslation()
Gets the string translation service.
Return value
\Drupal\Core\StringTranslation\TranslationInterface The string translation service.
File
- core/lib/Drupal/Core/StringTranslation/TranslatableMarkup.php, line 222
Class
- TranslatableMarkup
- Provides translatable markup class.
Namespace
Drupal\Core\StringTranslation
Code
1 2 3 4 5 6 7 | protected function getStringTranslation() { if (! $this ->stringTranslation) { $this ->stringTranslation = \Drupal::service( 'string_translation' ); } return $this ->stringTranslation; } |
Please login to continue.