You are here

public function SupportTicketViewBuilder::buildComponents in Support Ticketing System 8

Builds the component fields and properties of a set of entities.

Parameters

&$build: The renderable array representing the entity content.

\Drupal\Core\Entity\EntityInterface[] $entities: The entities whose content is being built.

\Drupal\Core\Entity\Display\EntityViewDisplayInterface[] $displays: The array of entity view displays holding the display options configured for the entity components, keyed by bundle name.

string $view_mode: The view mode in which the entity is being viewed.

Overrides EntityViewBuilder::buildComponents

File

modules/support_ticket/src/SupportTicketViewBuilder.php, line 24
Contains \Drupal\support_ticket\SupportTicketViewBuilder.

Class

SupportTicketViewBuilder
Render controller for support tickets.

Namespace

Drupal\support_ticket

Code

public function buildComponents(array &$build, array $entities, array $displays, $view_mode) {

  /** @var \Drupal\support_ticket\SupportTicketInterface[] $entities */
  if (empty($entities)) {
    return;
  }
  parent::buildComponents($build, $entities, $displays, $view_mode);
  foreach ($entities as $id => $entity) {
    $bundle = $entity
      ->bundle();
    $display = $displays[$bundle];
    if ($display
      ->getComponent('links')) {
      $build[$id]['links'] = array(
        '#lazy_builder' => [
          get_called_class() . '::renderLinks',
          [
            $entity
              ->id(),
            $view_mode,
            $entity
              ->language()
              ->getId(),
          ],
        ],
        '#create_placeholder' => TRUE,
      );
    }

    // Add Language field text element to support ticket render array.
    if ($display
      ->getComponent('langcode')) {
      $build[$id]['langcode'] = array(
        '#type' => 'item',
        '#title' => t('Language'),
        '#markup' => $entity
          ->language()
          ->getName(),
        '#prefix' => '<div id="field-language-display">',
        '#suffix' => '</div>',
      );
    }
  }
}