You are here

public function EnvironmentListBuilder::buildRow in Environment 8

Builds a row for an entity in the entity listing.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list.

Return value

array A render array structure of fields for this entity.

Overrides EntityListBuilder::buildRow

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

src/Controller/EnvironmentListBuilder.php, line 30
Contains Drupal\environment\Controller\EnvironmentListBuilder.

Class

EnvironmentListBuilder
Provides a listing of Environment entities.

Namespace

Drupal\environment\Controller

Code

public function buildRow(EntityInterface $entity) {
  $row['label'] = $this
    ->getLabel($entity);
  $row['id'] = $entity
    ->id();
  $row['description'] = $entity
    ->get('description');
  return $row + parent::buildRow($entity);
}