You are here

public function ElevateZoomPlusListBuilder::buildHeader in ElevateZoom Plus 8

Same name and namespace in other branches
  1. 7 modules/ui/src/Controller/ElevateZoomPlusListBuilder.php \Drupal\elevatezoomplus_ui\Controller\ElevateZoomPlusListBuilder::buildHeader()

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides DraggableListBuilder::buildHeader

See also

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

File

modules/ui/src/Controller/ElevateZoomPlusListBuilder.php, line 24

Class

ElevateZoomPlusListBuilder
Provides a listing of ElevateZoomPlus optionsets.

Namespace

Drupal\elevatezoomplus_ui\Controller

Code

public function buildHeader() {
  $header = [
    'label' => $this
      ->t('Optionset'),
    'responsive' => $this
      ->t('Responsive'),
  ];
  return $header + parent::buildHeader();
}