EntityFormDisplayEditForm::getTableHeader

protected 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 92

Class

EntityFormDisplayEditForm
Edit form for the EntityFormDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

1
2
3
4
5
6
7
8
protected function getTableHeader() {
  return array(
    $this->t('Field'),
    $this->t('Weight'),
    $this->t('Parent'),
    array('data' => $this->t('Widget'), 'colspan' => 3),
  );
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.