MenuListBuilder::buildHeader

public MenuListBuilder::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/menu_ui/src/MenuListBuilder.php, line 19

Class

MenuListBuilder
Defines a class to build a listing of menu entities.

Namespace

Drupal\menu_ui

Code

public function buildHeader() {
  $header['title'] = t('Title');
  $header['description'] = array(
    'data' => t('Description'),
    'class' => array(RESPONSIVE_PRIORITY_MEDIUM),
  );
  return $header + parent::buildHeader();
}
doc_Drupal
2016-10-29 09:27:24
Comments
Leave a Comment

Please login to continue.