You are here

public static function ComputedFormatter::defaultSettings in Computed Field 8

Defines the default settings for this plugin.

Return value

array A list of default settings, keyed by the setting name.

Overrides PluginSettingsBase::defaultSettings

File

src/Plugin/Field/FieldFormatter/ComputedFormatter.php, line 26

Class

ComputedFormatter
Plugin implementation of the 'computed' formatter.

Namespace

Drupal\computed_field\Plugin\Field\FieldFormatter

Code

public static function defaultSettings() {
  return array(
    'sanitized' => TRUE,
  ) + parent::defaultSettings();
}