function MenuListBuilder::buildHeader
Builds the header row for the entity listing.
Return value
array A render array structure of header strings.
Overrides EntityListBuilder::buildHeader
File
- 
              core/
modules/ menu_ui/ src/ MenuListBuilder.php, line 36  
Class
- MenuListBuilder
 - Defines a class to build a listing of menu entities.
 
Namespace
Drupal\menu_uiCode
public function buildHeader() {
  $header['title'] = t('Title');
  $header['description'] = [
    'data' => t('Description'),
    'class' => [
      RESPONSIVE_PRIORITY_MEDIUM,
    ],
  ];
  return $header + parent::buildHeader();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.