ShortcutSetListBuilder::buildHeader

public 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 18

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();
}
doc_Drupal
2016-10-29 09:42:53
Comments
Leave a Comment

Please login to continue.