function DraggableListBuilderTrait::buildHeader

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Entity/DraggableListBuilderTrait.php \Drupal\Core\Entity\DraggableListBuilderTrait::buildHeader()

Builds the header row for the entity listing.

Return value

array A render array structure for the header.

See also

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

6 calls to DraggableListBuilderTrait::buildHeader()
DraggableListBuilderTrait::buildForm in core/lib/Drupal/Core/Entity/DraggableListBuilderTrait.php
Form constructor.
FilterFormatListBuilder::buildHeader in core/modules/filter/src/FilterFormatListBuilder.php
Builds the header row for the entity listing.
LanguageListBuilder::buildHeader in core/modules/language/src/LanguageListBuilder.php
Builds the header row for the entity listing.
RoleListBuilder::buildHeader in core/modules/user/src/RoleListBuilder.php
Builds the header row for the entity listing.
SearchPageListBuilder::buildHeader in core/modules/search/src/SearchPageListBuilder.php
Builds the header row for the entity listing.

... See full list

5 methods override DraggableListBuilderTrait::buildHeader()
FilterFormatListBuilder::buildHeader in core/modules/filter/src/FilterFormatListBuilder.php
Builds the header row for the entity listing.
LanguageListBuilder::buildHeader in core/modules/language/src/LanguageListBuilder.php
Builds the header row for the entity listing.
RoleListBuilder::buildHeader in core/modules/user/src/RoleListBuilder.php
Builds the header row for the entity listing.
SearchPageListBuilder::buildHeader in core/modules/search/src/SearchPageListBuilder.php
Builds the header row for the entity listing.
VocabularyListBuilder::buildHeader in core/modules/taxonomy/src/VocabularyListBuilder.php
Builds the header row for the entity listing.

File

core/lib/Drupal/Core/Entity/DraggableListBuilderTrait.php, line 74

Class

DraggableListBuilderTrait
Provides a trait for draggable listings of entities.

Namespace

Drupal\Core\Entity

Code

public function buildHeader() {
    $header = [];
    if (!empty($this->weightKey)) {
        $header['weight'] = t('Weight');
    }
    return $header + parent::buildHeader();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.