You are here

protected function EntityViewDisplayEditForm::getTableHeader in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php \Drupal\field_ui\Form\EntityViewDisplayEditForm::getTableHeader()

Returns an array containing the table headers.

Return value

array The table header.

Overrides EntityDisplayFormBase::getTableHeader

File

core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php, line 129

Class

EntityViewDisplayEditForm
Edit form for the EntityViewDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getTableHeader() {
  return [
    $this
      ->t('Field'),
    $this
      ->t('Weight'),
    $this
      ->t('Parent'),
    $this
      ->t('Region'),
    $this
      ->t('Label'),
    [
      'data' => $this
        ->t('Format'),
      'colspan' => 3,
    ],
  ];
}