public function BlockContentListBuilder::buildHeader in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/block_content/src/BlockContentListBuilder.php \Drupal\block_content\BlockContentListBuilder::buildHeader()
Builds the header row for the entity listing.
Return value
array A render array structure of header strings.
Overrides EntityListBuilder::buildHeader
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- core/
modules/ block_content/ src/ BlockContentListBuilder.php, line 23 - Contains \Drupal\block_content\BlockContentListBuilder.
Class
- BlockContentListBuilder
- Defines a class to build a listing of custom block entities.
Namespace
Drupal\block_contentCode
public function buildHeader() {
$header['label'] = t('Block description');
return $header + parent::buildHeader();
}