UserListBuilder::render

public UserListBuilder::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

core/modules/user/src/UserListBuilder.php, line 181

Class

UserListBuilder
Defines a class to build a listing of user entities.

Namespace

Drupal\user

Code

public function render() {
  $build = parent::render();
  $build['table']['#empty'] = $this->t('No people available.');
  return $build;
}
doc_Drupal
2016-10-29 09:52:39
Comments
Leave a Comment

Please login to continue.