You are here

public function ShortcutSetListBuilder::buildHeader in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/shortcut/src/ShortcutSetListBuilder.php \Drupal\shortcut\ShortcutSetListBuilder::buildHeader()

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides EntityListBuilder::buildHeader

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

core/modules/shortcut/src/ShortcutSetListBuilder.php, line 23
Contains \Drupal\shortcut\ShortcutSetListBuilder.

Class

ShortcutSetListBuilder
Defines a class to build a listing of shortcut set entities.

Namespace

Drupal\shortcut

Code

public function buildHeader() {
  $header['name'] = t('Name');
  return $header + parent::buildHeader();
}