You are here

public function QuizResultAnswerTypeListBuilder::render in Quiz 6.x

Same name and namespace in other branches
  1. 8.6 src/Config/Entity/QuizResultAnswerTypeListBuilder.php \Drupal\quiz\Config\Entity\QuizResultAnswerTypeListBuilder::render()
  2. 8.5 src/Config/Entity/QuizResultAnswerTypeListBuilder.php \Drupal\quiz\Config\Entity\QuizResultAnswerTypeListBuilder::render()

Builds the entity listing as renderable array for table.html.twig.

@todo Add a link to add a new item to the #empty text.

Overrides EntityListBuilder::render

File

src/Config/Entity/QuizResultAnswerTypeListBuilder.php, line 13

Class

QuizResultAnswerTypeListBuilder
Defines the list builder for quiz result answer types.

Namespace

Drupal\quiz\Config\Entity

Code

public function render() {
  $build = parent::render();
  $build['table']['#caption'] = t('Answer types.');
  return $build;
}