function DraggableListBuilder::buildHeader
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php \Drupal\Core\Config\Entity\DraggableListBuilder::buildHeader()
Overrides EntityListBuilder::buildHeader
6 calls to DraggableListBuilder::buildHeader()
- DraggableListBuilder::buildForm in core/
lib/ Drupal/ Core/ Config/ Entity/ DraggableListBuilder.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.
5 methods override DraggableListBuilder::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/ Config/ Entity/ DraggableListBuilder.php, line 60
Class
- DraggableListBuilder
- Defines a class to build a draggable listing of configuration entities.
Namespace
Drupal\Core\Config\EntityCode
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.