function FieldStorageConfigListBuilder::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/ field_ui/ src/ FieldStorageConfigListBuilder.php, line 87 
Class
- FieldStorageConfigListBuilder
- Defines a class to build a listing of fields.
Namespace
Drupal\field_uiCode
public function buildHeader() {
  $header['id'] = $this->t('Field name');
  $header['entity_type'] = $this->t('Entity type');
  $header['type'] = [
    'data' => $this->t('Field type'),
    'class' => [
      RESPONSIVE_PRIORITY_MEDIUM,
    ],
  ];
  $header['usage'] = $this->t('Used in');
  return $header;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
