You are here

public static function FeedsItemUrlFormatter::defaultSettings in Feeds 8.3

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/FeedsItemUrlFormatter.php, line 27

Class

FeedsItemUrlFormatter
Plugin implementation of the 'feeds_item_url' formatter.

Namespace

Drupal\feeds\Plugin\Field\FieldFormatter

Code

public static function defaultSettings() {
  return [
    'url_plain' => '',
  ] + parent::defaultSettings();
}