public function QuizQuestionListBuilder::buildRow in Quiz 6.x
Same name and namespace in other branches
- 8.6 src/Config/Entity/QuizQuestionListBuilder.php \Drupal\quiz\Config\Entity\QuizQuestionListBuilder::buildRow()
- 8.5 src/Config/Entity/QuizQuestionListBuilder.php \Drupal\quiz\Config\Entity\QuizQuestionListBuilder::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/ QuizQuestionListBuilder.php, line 35 
Class
- QuizQuestionListBuilder
- Defines the list builder for quiz question entities.
Namespace
Drupal\quiz\Config\EntityCode
public function buildRow(EntityInterface $entity) {
  $row['title'] = $entity
    ->toLink(NULL, 'edit-form');
  $row['type'] = QuizQuestionType::load($entity
    ->bundle())
    ->label();
  return $row + parent::buildRow($entity);
}