public static function FeedsItem::defaultStorageSettings in Feeds 8.3
Defines the storage-level settings for this plugin.
Return value
array A list of default settings, keyed by the setting name.
Overrides EntityReferenceItem::defaultStorageSettings
File
- src/
Plugin/ Field/ FieldType/ FeedsItem.php, line 49
Class
- FeedsItem
- Plugin implementation of the 'feeds_item' field type.
Namespace
Drupal\feeds\Plugin\Field\FieldTypeCode
public static function defaultStorageSettings() {
return [
'target_type' => 'feeds_feed',
] + parent::defaultStorageSettings();
}