You are here

protected function EntityFormDisplayEditForm::getTableHeader in Zircon Profile 8

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

Returns an array containing the table headers.

Return value

array The table header.

Overrides EntityDisplayFormBase::getTableHeader

File

core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php, line 86
Contains \Drupal\field_ui\Form\EntityFormDisplayEditForm.

Class

EntityFormDisplayEditForm
Edit form for the EntityFormDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getTableHeader() {
  return array(
    $this
      ->t('Field'),
    $this
      ->t('Weight'),
    $this
      ->t('Parent'),
    array(
      'data' => $this
        ->t('Widget'),
      'colspan' => 3,
    ),
  );
}