NoSourceModule.php in Drupal 9
Same filename and directory in other branches
File
core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/src/Plugin/migrate/source/NoSourceModule.phpView source
<?php
namespace Drupal\migration_provider_test\Plugin\migrate\source;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
/**
* A test source plugin without a source_module.
*
* @MigrateSource(
* id = "no_source_module",
* )
*/
class NoSourceModule extends DrupalSqlBase {
/**
* {@inheritdoc}
*/
public function query() {
}
/**
* {@inheritdoc}
*/
public function fields() {
}
/**
* {@inheritdoc}
*/
public function getIds() {
}
}
Classes
Name | Description |
---|---|
NoSourceModule | A test source plugin without a source_module. |