public static function DescriptionAwareFileFormatterBase::defaultSettings in Drupal 9
Same name and namespace in other branches
- 8 core/modules/file/src/Plugin/Field/FieldFormatter/DescriptionAwareFileFormatterBase.php \Drupal\file\Plugin\Field\FieldFormatter\DescriptionAwareFileFormatterBase::defaultSettings()
Defines the default settings for this plugin.
Return value
array A list of default settings, keyed by the setting name.
Overrides PluginSettingsBase::defaultSettings
File
- core/
modules/ file/ src/ Plugin/ Field/ FieldFormatter/ DescriptionAwareFileFormatterBase.php, line 15
Class
- DescriptionAwareFileFormatterBase
- Base class for file formatters that have to deal with file descriptions.
Namespace
Drupal\file\Plugin\Field\FieldFormatterCode
public static function defaultSettings() {
$settings = parent::defaultSettings();
$settings['use_description_as_link_text'] = TRUE;
return $settings;
}