public function EntityBCDecorator::getTranslation

Forwards the call to the decorated entity.

Overrides TranslatableInterface::getTranslation

File

drupal/core/lib/Drupal/Core/Entity/EntityBCDecorator.php, line 428
Contains \Drupal\Core\Entity\EntityBCDecorator.

Class

EntityBCDecorator
Provides backwards compatible (BC) access to entity fields.

Namespace

Drupal\Core\Entity

Code

public function getTranslation($langcode, $strict = TRUE) {
  return $this->decorated
    ->getTranslation($langcode, $strict);
}