public function FieldFormBase::getProperties in Display Suite 8.3
Same name and namespace in other branches
- 8.4 src/Form/FieldFormBase.php \Drupal\ds\Form\FieldFormBase::getProperties()
- 8.2 src/Form/FieldFormBase.php \Drupal\ds\Form\FieldFormBase::getProperties()
Returns the properties for the custom field.
1 call to FieldFormBase::getProperties()
- FieldFormBase::submitForm in src/
Form/ FieldFormBase.php - Form submission handler.
4 methods override FieldFormBase::getProperties()
- BlockFieldForm::getProperties in src/
Form/ BlockFieldForm.php - Returns the properties for the custom field.
- CopyFieldForm::getProperties in src/
Form/ CopyFieldForm.php - Returns the properties for the custom field.
- TokenFieldForm::getProperties in src/
Form/ TokenFieldForm.php - Returns the properties for the custom field.
- TwigFieldForm::getProperties in src/
Form/ TwigFieldForm.php - Returns the properties for the custom field.
File
- src/
Form/ FieldFormBase.php, line 203
Class
- FieldFormBase
- Base form for fields.
Namespace
Drupal\ds\FormCode
public function getProperties(FormStateInterface $form_state) {
return [];
}