You are here

public function QuizListBuilder::buildRow in Quiz 8.6

Same name and namespace in other branches
  1. 8.5 src/Config/Entity/QuizListBuilder.php \Drupal\quiz\Config\Entity\QuizListBuilder::buildRow()
  2. 6.x src/Config/Entity/QuizListBuilder.php \Drupal\quiz\Config\Entity\QuizListBuilder::buildRow()

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/Config/Entity/QuizListBuilder.php, line 31

Class

QuizListBuilder
Defines the list builder for Quiz entities.

Namespace

Drupal\quiz\Config\Entity

Code

public function buildRow(EntityInterface $entity) {
  $row['label'] = $entity
    ->toLink(NULL, 'edit-form');
  return $row + parent::buildRow($entity);
}