You are here

public function BlockCategoryListingForm::buildHeader in Layout Builder Browser 8

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

src/Form/BlockCategoryListingForm.php, line 25

Class

BlockCategoryListingForm
Builds a listing of block category entities.

Namespace

Drupal\layout_builder_browser\Form

Code

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