You are here

public function UnitBundleListBuilder::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

modules/bat_unit/src/UnitBundleListBuilder.php, line 24
Contains \Drupal\bat_unit\UnitBundleListBuilder.

Class

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

Namespace

Drupal\bat_unit

Code

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