You are here

public function SourcePluginBase::getSourceModule in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::getSourceModule()
  2. 9 core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php \Drupal\migrate\Plugin\migrate\source\SourcePluginBase::getSourceModule()

Gets the source module providing the source data.

Return value

string|null The source module or NULL if not found.

Overrides MigrateSourceInterface::getSourceModule

File

core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php, line 630

Class

SourcePluginBase
The base class for source plugins.

Namespace

Drupal\migrate\Plugin\migrate\source

Code

public function getSourceModule() {
  if (!empty($this->configuration['source_module'])) {
    return $this->configuration['source_module'];
  }
  elseif (!empty($this->pluginDefinition['source_module'])) {
    return $this->pluginDefinition['source_module'];
  }
  return NULL;
}