public function DsFieldBase::settingsForm in Display Suite 8.3
Same name and namespace in other branches
- 8.4 src/Plugin/DsField/DsFieldBase.php \Drupal\ds\Plugin\DsField\DsFieldBase::settingsForm()
- 8.2 src/Plugin/DsField/DsFieldBase.php \Drupal\ds\Plugin\DsField\DsFieldBase::settingsForm()
The form that holds the settings for this plugin.
Parameters
array $form: The form definition array for the field configuration form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The renderable form array representing the entire configuration form.
Overrides DsFieldInterface::settingsForm
8 methods override DsFieldBase::settingsForm()
- BlockDescription::settingsForm in src/
Plugin/ DsField/ Block/ BlockDescription.php - The form that holds the settings for this plugin.
- DynamicCopyField::settingsForm in src/
Plugin/ DsField/ DynamicCopyField.php - The form that holds the settings for this plugin.
- Entity::settingsForm in src/
Plugin/ DsField/ Entity.php - The form that holds the settings for this plugin.
- ExampleField::settingsForm in drush/
ExampleField.php - The form that holds the settings for this plugin.
- Link::settingsForm in src/
Plugin/ DsField/ Link.php - The form that holds the settings for this plugin.
File
- src/
Plugin/ DsField/ DsFieldBase.php, line 46
Class
- DsFieldBase
- Base class for all the ds plugins.
Namespace
Drupal\ds\Plugin\DsFieldCode
public function settingsForm($form, FormStateInterface $form_state) {
return [];
}