public function ViewListBuilder::buildHeader in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views_ui/src/ViewListBuilder.php \Drupal\views_ui\ViewListBuilder::buildHeader()
- 9 core/modules/views_ui/src/ViewListBuilder.php \Drupal\views_ui\ViewListBuilder::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()
1 call to ViewListBuilder::buildHeader()
- ViewListBuilder::render in core/
modules/ views_ui/ src/ ViewListBuilder.php - Builds the entity listing as renderable array for table.html.twig.
File
- core/
modules/ views_ui/ src/ ViewListBuilder.php, line 119
Class
- ViewListBuilder
- Defines a class to build a listing of view entities.
Namespace
Drupal\views_uiCode
public function buildHeader() {
return [
'view_name' => [
'data' => $this
->t('View name'),
'#attributes' => [
'class' => [
'views-ui-name',
],
],
],
'machine_name' => [
'data' => $this
->t('Machine name'),
'#attributes' => [
'class' => [
'views-ui-machine-name',
],
],
],
'description' => [
'data' => $this
->t('Description'),
'#attributes' => [
'class' => [
'views-ui-description',
],
],
],
'displays' => [
'data' => $this
->t('Displays'),
'#attributes' => [
'class' => [
'views-ui-displays',
],
],
],
'operations' => [
'data' => $this
->t('Operations'),
'#attributes' => [
'class' => [
'views-ui-operations',
],
],
],
];
}