function StringTranslationTrait::setStringTranslation
Sets the string translation service to use.
Parameters
\Drupal\Core\StringTranslation\TranslationInterface $translation: The string translation service.
Return value
$this
5 calls to StringTranslationTrait::setStringTranslation()
- BreakpointManager::__construct in core/modules/ breakpoint/ src/ BreakpointManager.php 
- Constructs a new BreakpointManager instance.
- EntityRevisionViewController::__construct in core/lib/ Drupal/ Core/ Entity/ Controller/ EntityRevisionViewController.php 
- Creates a new EntityRevisionViewController.
- EntityViewsData::__construct in core/modules/ views/ src/ EntityViewsData.php 
- Constructs an EntityViewsData object.
- ForumBreadcrumbBuilderBase::__construct in core/modules/ forum/ src/ Breadcrumb/ ForumBreadcrumbBuilderBase.php 
- Constructs a forum breadcrumb builder object.
- InstallProfileUninstallValidator::__construct in core/lib/ Drupal/ Core/ Extension/ InstallProfileUninstallValidator.php 
2 methods override StringTranslationTrait::setStringTranslation()
- TestMigrateExecutable::setStringTranslation in core/modules/ migrate/ tests/ src/ Unit/ TestMigrateExecutable.php 
- Sets the string translation service.
- TestPathBasedBreadcrumbBuilder::setStringTranslation in core/modules/ system/ tests/ src/ Unit/ Breadcrumbs/ PathBasedBreadcrumbBuilderTest.php 
- Sets the string translation service to use.
File
- 
              core/lib/ Drupal/ Core/ StringTranslation/ StringTranslationTrait.php, line 118 
Class
- StringTranslationTrait
- Wrapper methods for \Drupal\Core\StringTranslation\TranslationInterface.
Namespace
Drupal\Core\StringTranslationCode
public function setStringTranslation(TranslationInterface $translation) {
  $this->stringTranslation = $translation;
  return $this;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
