public function FieldConfigBase::getSettings in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::getSettings()
- 10 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::getSettings()
Returns the array of settings, as required by the used class.
See the documentation of the class for supported or required settings.
Return value
array The array of settings.
Overrides DataDefinitionInterface::getSettings
1 call to FieldConfigBase::getSettings()
- FieldConfigBase::getItemDefinition in core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php - Gets the data definition of an item of the list.
File
- core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php, line 345
Class
- FieldConfigBase
- Base class for configurable field definitions.
Namespace
Drupal\Core\FieldCode
public function getSettings() {
return $this->settings + $this
->getFieldStorageDefinition()
->getSettings();
}