You are here

public function QuizTypeListBuilder::render in Quiz 6.x

Same name and namespace in other branches
  1. 8.6 src/Config/Entity/QuizTypeListBuilder.php \Drupal\quiz\Config\Entity\QuizTypeListBuilder::render()
  2. 8.5 src/Config/Entity/QuizTypeListBuilder.php \Drupal\quiz\Config\Entity\QuizTypeListBuilder::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/QuizTypeListBuilder.php, line 13

Class

QuizTypeListBuilder
Defines the list builder for quiz question types.

Namespace

Drupal\quiz\Config\Entity

Code

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