You are here

class TranslationLanguageRenderer in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Entity/Render/TranslationLanguageRenderer.php \Drupal\views\Entity\Render\TranslationLanguageRenderer

Renders entity translations in their row language.

Hierarchy

Expanded class hierarchy of TranslationLanguageRenderer

1 string reference to 'TranslationLanguageRenderer'
EntityTranslationRenderTrait::getEntityTranslationRenderer in core/modules/views/src/Entity/Render/EntityTranslationRenderTrait.php
Returns the current renderer.

File

core/modules/views/src/Entity/Render/TranslationLanguageRenderer.php, line 17
Contains \Drupal\views\Entity\Render\TranslationLanguageRenderer.

Namespace

Drupal\views\Entity\Render
View source
class TranslationLanguageRenderer extends EntityTranslationRendererBase {

  /**
   * Stores the field alias of the langcode column.
   *
   * @var string
   */
  protected $langcodeAlias;

  /**
   * {@inheritdoc}
   */
  public function query(QueryPluginBase $query, $relationship = NULL) {

    // In order to render in the translation language of the entity, we need
    // to add the language code of the entity to the query. Skip if the site
    // is not multilingual or the entity is not translatable.
    if (!$this->languageManager
      ->isMultilingual() || !$this->entityType
      ->hasKey('langcode')) {
      return;
    }
    $langcode_key = $this->entityType
      ->getKey('langcode');
    $storage = \Drupal::entityManager()
      ->getStorage($this->entityType
      ->id());
    if ($table = $storage
      ->getTableMapping()
      ->getFieldTableName($langcode_key)) {
      $table_alias = $query
        ->ensureTable($table, $relationship);
      $this->langcodeAlias = $query
        ->addField($table_alias, $langcode_key);
    }
  }

  /**
   * {@inheritdoc}
   */
  public function preRender(array $result) {
    $view_builder = $this->view->rowPlugin->entityManager
      ->getViewBuilder($this->entityType
      ->id());

    /** @var \Drupal\views\ResultRow $row */
    foreach ($result as $row) {
      $entity = $row->_entity;
      $entity->view = $this->view;
      $langcode = $this
        ->getLangcode($row);
      $this->build[$entity
        ->id()][$langcode] = $view_builder
        ->view($entity, $this->view->rowPlugin->options['view_mode'], $this
        ->getLangcode($row));
    }
  }

  /**
   * {@inheritdoc}
   */
  public function render(ResultRow $row) {
    $entity_id = $row->_entity
      ->id();
    $langcode = $this
      ->getLangcode($row);
    return $this->build[$entity_id][$langcode];
  }

  /**
   * {@inheritdoc}
   */
  public function getLangcode(ResultRow $row) {
    return isset($row->{$this->langcodeAlias}) ? $row->{$this->langcodeAlias} : $this->languageManager
      ->getDefaultLanguage()
      ->getId();
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    return [
      'languages:' . LanguageInterface::TYPE_CONTENT,
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RendererBase::$build protected property Contains an array of render arrays, one for each rendered entity.
RendererBase::$entityType protected property The type of the entity being rendered.
RendererBase::$languageManager protected property The language manager.
RendererBase::$view public property The view executable wrapping the view storage entity.
RendererBase::getCacheMaxAge public function The maximum age for which this object may be cached. Overrides CacheableDependencyInterface::getCacheMaxAge
RendererBase::getCacheTags public function The cache tags associated with this object. Overrides CacheableDependencyInterface::getCacheTags
RendererBase::__construct public function Constructs a renderer object. 2
TranslationLanguageRenderer::$langcodeAlias protected property Stores the field alias of the langcode column.
TranslationLanguageRenderer::getCacheContexts public function The cache contexts associated with this object. Overrides RendererBase::getCacheContexts
TranslationLanguageRenderer::getLangcode public function Returns the language code associated with the given row. Overrides EntityTranslationRendererBase::getLangcode
TranslationLanguageRenderer::preRender public function Runs before each entity is rendered. Overrides EntityTranslationRendererBase::preRender
TranslationLanguageRenderer::query public function Alters the query if needed. Overrides EntityTranslationRendererBase::query
TranslationLanguageRenderer::render public function Renders entity data. Overrides EntityTranslationRendererBase::render