You are here

public function ContentModerationNotificationsListBuilder::render in Content Moderation Notifications 8

Adds some descriptive text to our entity list.

Typically, there's no need to override render(). You may wish to do so, however, if you want to add markup before or after the table.

Return value

array Renderable array.

Overrides EntityListBuilder::render

File

src/Controller/ContentModerationNotificationsListBuilder.php, line 106

Class

ContentModerationNotificationsListBuilder
Provides a listing of content_moderation_notification entities.

Namespace

Drupal\content_moderation_notifications\Controller

Code

public function render() {
  $build['description'] = array(
    '#markup' => $this
      ->t(""),
  );
  $build[] = parent::render();
  return $build;
}