protected function FieldsSettingsForm::getTableHeader in Diff 8
Returns the header for the table.
1 call to FieldsSettingsForm::getTableHeader()
- FieldsSettingsForm::buildForm in src/
Form/ FieldsSettingsForm.php - Form constructor.
File
- src/
Form/ FieldsSettingsForm.php, line 519
Class
- FieldsSettingsForm
- Configure fields with their diff builder plugin settings.
Namespace
Drupal\diff\FormCode
protected function getTableHeader() {
return array(
'entity_type' => $this
->t('Entity Type'),
'field_name' => $this
->t('Field'),
'field_type' => $this
->t('Field Type'),
'plugin' => $this
->t('Plugin'),
'settings_edit' => '',
);
}