SourceBase.php in Feeds 8.3
Namespace
Drupal\feeds\Plugin\Type\SourceFile
src/Plugin/Type/Source/SourceBase.phpView source
<?php
namespace Drupal\feeds\Plugin\Type\Source;
use Drupal\feeds\Plugin\Type\PluginBase;
/**
* Base class for source plugins.
*/
abstract class SourceBase extends PluginBase implements SourceInterface {
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$defaults = $this
->defaultConfiguration();
$this->configuration = $configuration + $defaults;
}
}
Classes
Name | Description |
---|---|
SourceBase | Base class for source plugins. |