public FieldStorageDefinitionInterface::getSettings()
Returns the storage settings.
Each field type defines the settings that are meaningful for that type. For example, a text field can define a 'max_length' setting, and an image field can define a 'alt_field_required' setting.
The method always returns an array of all available settings for this field type, possibly with the default values merged in if values have not been provided for all available settings.
Return value
mixed[] An array of key/value pairs.
File
- core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php, line 68
Class
- FieldStorageDefinitionInterface
- Defines an interface for entity field storage definitions.
Namespace
Drupal\Core\Field
Code
public function getSettings();
Please login to continue.