public function DefaultProcessor::getConfiguration in Drupal 9
Same name and namespace in other branches
- 8 core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php \Drupal\aggregator\Plugin\aggregator\processor\DefaultProcessor::getConfiguration()
Gets this plugin's configuration.
Return value
array An array of this plugin's configuration.
Overrides ConfigurableInterface::getConfiguration
1 call to DefaultProcessor::getConfiguration()
- DefaultProcessor::__construct in core/
modules/ aggregator/ src/ Plugin/ aggregator/ processor/ DefaultProcessor.php - Constructs a DefaultProcessor object.
File
- core/
modules/ aggregator/ src/ Plugin/ aggregator/ processor/ DefaultProcessor.php, line 276
Class
- DefaultProcessor
- Defines a default processor implementation.
Namespace
Drupal\aggregator\Plugin\aggregator\processorCode
public function getConfiguration() {
return $this->configFactory
->get('aggregator.settings')
->get();
}