public function FormsStepsListBuilder::buildHeader in Forms Steps 8
Building the header and content lines for the contact list.
Calling the parent::buildHeader() adds a column for the possible actions and inserts the 'edit' and 'delete' links as defined for the entity type.
Overrides EntityListBuilder::buildHeader
File
- src/Controller/ FormsStepsListBuilder.php, line 24 
Class
- FormsStepsListBuilder
- Defines a class to build a listing of FormsSteps entities.
Namespace
Drupal\forms_steps\ControllerCode
public function buildHeader() {
  $header['id'] = $this
    ->t('ID');
  $header['label'] = $this
    ->t('Label');
  $header['description'] = $this
    ->t('Description');
  return $header + parent::buildHeader();
}