You are here

class DefaultLanguageRenderer in Display Suite 8.4

Same name and namespace in other branches
  1. 8.2 src/Plugin/views/Entity/Render/DefaultLanguageRenderer.php \Drupal\ds\Plugin\views\Entity\Render\DefaultLanguageRenderer
  2. 8.3 src/Plugin/views/Entity/Render/DefaultLanguageRenderer.php \Drupal\ds\Plugin\views\Entity\Render\DefaultLanguageRenderer

Renders entities in the current language.

Hierarchy

Expanded class hierarchy of DefaultLanguageRenderer

1 string reference to 'DefaultLanguageRenderer'
EntityRow::getEntityTranslationRenderer in src/Plugin/views/row/EntityRow.php
Returns the current renderer.

File

src/Plugin/views/Entity/Render/DefaultLanguageRenderer.php, line 10

Namespace

Drupal\ds\Plugin\views\Entity\Render
View source
class DefaultLanguageRenderer extends RendererBase {

  /**
   * Returns the language code associated to the given row.
   *
   * @param \Drupal\views\ResultRow $row
   *   The result row.
   *
   * @return string
   *   A language code.
   */
  public function getLangcode(ResultRow $row) {
    return $row->_entity
      ->getUntranslated()
      ->language()
      ->getId();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DefaultLanguageRenderer::getLangcode public function Returns the language code associated to the given row. Overrides EntityTranslationRendererBase::getLangcode 1
EntityTranslationRendererBase::query public function Alters the query if needed. Overrides RendererBase::query 1
EntityTranslationRendererBase::render public function Renders entity data. Overrides RendererBase::render 1
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::dsPreRender protected function Pre renders all the Display Suite rows.
RendererBase::getCacheContexts public function The cache contexts associated with this object. Overrides CacheableDependencyInterface::getCacheContexts 2
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::preRender public function Runs before each entity is rendered. Overrides EntityTranslationRendererBase::preRender 1
RendererBase::__construct public function Constructs a renderer object. 2