You are here

public function FeatureListBuilder::buildHeader in Configuration selector 8

Same name and namespace in other branches
  1. 8.2 src/FeatureListBuilder.php \Drupal\config_selector\FeatureListBuilder::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

src/FeatureListBuilder.php, line 18

Class

FeatureListBuilder
Builds a listing of Configuration Selector feature entities.

Namespace

Drupal\config_selector

Code

public function buildHeader() {
  $header['name'] = $this
    ->t('Name');
  $header['description'] = $this
    ->t('Description');
  return $header + parent::buildHeader();
}