interface TranslatorInterface

Same name in this branch

Interface for objects capable of string translation.

Hierarchy

Expanded class hierarchy of TranslatorInterface

All classes that implement TranslatorInterface

3 files declare their use of TranslatorInterface
LanguageRequestSubscriber.php in drupal/core/lib/Drupal/Core/EventSubscriber/LanguageRequestSubscriber.php
Contains \Drupal\Core\EventSubscriber\LanguageRequestSubscriber.
LocaleTranslation.php in drupal/core/modules/locale/lib/Drupal/locale/LocaleTranslation.php
Contains \Drupal\Core\Language\LocaleTranslation.
TranslationManager.php in drupal/core/lib/Drupal/Core/StringTranslation/TranslationManager.php
Contains \Drupal\Core\StringTranslation\TranslationManager.

File

drupal/core/lib/Drupal/Core/StringTranslation/Translator/TranslatorInterface.php, line 13
Contains \Drupal\Core\StringTranslation\Translator\TranslationInterface.

Namespace

Drupal\Core\StringTranslation\Translator
View source
interface TranslatorInterface {

  /**
   * Retrieves English string to given language.
   *
   * @param string $langcode
   *   Language code to translate to.
   * @param string $string
   *   The source string.
   * @param string $context
   *   The string context.
   *
   * @return string|FALSE
   *   Translated string if there is a translation, FALSE if not.
   */
  public function getStringTranslation($langcode, $string, $context);

  /**
   * Resets translation cache.
   *
   * Since most translation systems implement some form of caching, this
   * provides a way to delete that cache.
   */
  public function reset();

}

Members

Namesort descending Modifiers Type Description Overrides
TranslatorInterface::getStringTranslation public function Retrieves English string to given language. 3
TranslatorInterface::reset public function Resets translation cache. 3