Skip to content
Snippets Groups Projects

Move source_module from Migrate to Migrate Drupal

Closed quietone requested to merge issue/drupal-3009349:3009349-move-sourcemodule-and into 11.x
Compare and
123 files
+ 659
594
Compare changes
  • Side-by-side
  • Inline
Files
123
@@ -2,7 +2,6 @@
namespace Drupal\ban\Plugin\migrate\source\d7;
use Drupal\migrate\Attribute\MigrateSource;
use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
/**
@@ -12,11 +11,12 @@
*
* @see \Drupal\migrate\Plugin\migrate\source\SqlBase
* @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
*
* @MigrateSource(
* id = "d7_blocked_ips",
* source_module = "system"
* )
*/
#[MigrateSource(
id: 'd7_blocked_ips',
source_module: 'system',
)]
class BlockedIps extends DrupalSqlBase {
/**
Loading