You are here

public function TypeGroupBundleListBuilder::buildHeader in Booking and Availability Management Tools for Drupal 8

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

src/TypeGroupBundleListBuilder.php, line 24
Contains \Drupal\bat\TypeGroupBundleListBuilder.

Class

TypeGroupBundleListBuilder
Defines a class to build a listing of event type entities.

Namespace

Drupal\bat

Code

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