You are here

public function PluginBase::defaultConfiguration in Feeds 8.3

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurableInterface::defaultConfiguration

2 calls to PluginBase::defaultConfiguration()
PluginBase::setConfiguration in src/Plugin/Type/PluginBase.php
Sets the configuration for this plugin instance.
SourceBase::setConfiguration in src/Plugin/Type/Source/SourceBase.php
Sets the configuration for this plugin instance.
7 methods override PluginBase::defaultConfiguration()
CsvParser::defaultConfiguration in src/Feeds/Parser/CsvParser.php
Gets default configuration for this plugin.
DirectoryFetcher::defaultConfiguration in src/Feeds/Fetcher/DirectoryFetcher.php
Gets default configuration for this plugin.
EntityProcessorBase::defaultConfiguration in src/Feeds/Processor/EntityProcessorBase.php
Gets default configuration for this plugin.
HttpFetcher::defaultConfiguration in src/Feeds/Fetcher/HttpFetcher.php
Gets default configuration for this plugin.
ParserWithMappingForm::defaultConfiguration in tests/modules/feeds_test_plugin/src/Feeds/Parser/ParserWithMappingForm.php
Gets default configuration for this plugin.

... See full list

File

src/Plugin/Type/PluginBase.php, line 93

Class

PluginBase
The base class for the fetcher, parser, and processor plugins.

Namespace

Drupal\feeds\Plugin\Type

Code

public function defaultConfiguration() {
  return [];
}