function DraggableListBuilderTrait::buildHeader
Same name and namespace in other branches
- 11.x 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()
1 call to DraggableListBuilderTrait::buildHeader()
- DraggableListBuilderTrait::buildForm in core/
lib/ Drupal/ Core/ Entity/ DraggableListBuilderTrait.php - Form constructor.
File
-
core/
lib/ Drupal/ Core/ Entity/ DraggableListBuilderTrait.php, line 74
Class
- DraggableListBuilderTrait
- Provides a trait for draggable listings of entities.
Namespace
Drupal\Core\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.