Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!7319
Move source_module from Migrate to Migrate Drupal
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Move source_module from Migrate to Migrate Drupal
issue/drupal-3009349:3009349-move-sourcemodule-and
into
11.x
Overview
6
Commits
24
Pipelines
26
Changes
123
Closed
quietone
requested to merge
issue/drupal-3009349:3009349-move-sourcemodule-and
into
11.x
1 year ago
Overview
4
Commits
24
Pipelines
26
Changes
123
Expand
Closes
#3009349
0
0
Merge request reports
Compare
11.x
version 25
3668a002
1 week ago
version 24
089db44f
1 week ago
version 23
287a21a1
2 weeks ago
version 22
81f1173d
2 weeks ago
version 21
50820bed
2 weeks ago
version 20
653a0797
2 weeks ago
version 19
901533a3
2 weeks ago
version 18
c3f55d70
3 weeks ago
version 17
36cd3482
1 month ago
version 16
8e68493f
1 month ago
version 15
8dcacf76
1 month ago
version 14
ce55824a
1 month ago
version 13
0fc5dbb9
1 month ago
version 12
3dbadc2e
1 month ago
version 11
4b4ef344
1 month ago
version 10
f1b71f97
1 year ago
version 9
7ba502f8
1 year ago
version 8
9793b8e7
1 year ago
version 7
fc1e7678
1 year ago
version 6
d86998ec
1 year ago
version 5
89022df9
1 year ago
version 4
6ccfd351
1 year ago
version 3
b64bc428
1 year ago
version 2
669285f5
1 year ago
version 1
5cf3d6d2
1 year ago
11.x (base)
and
latest version
latest version
d561234a
24 commits,
1 week ago
version 25
3668a002
24 commits,
1 week ago
version 24
089db44f
23 commits,
1 week ago
version 23
287a21a1
23 commits,
2 weeks ago
version 22
81f1173d
22 commits,
2 weeks ago
version 21
50820bed
20 commits,
2 weeks ago
version 20
653a0797
19 commits,
2 weeks ago
version 19
901533a3
17 commits,
2 weeks ago
version 18
c3f55d70
15 commits,
3 weeks ago
version 17
36cd3482
14 commits,
1 month ago
version 16
8e68493f
14 commits,
1 month ago
version 15
8dcacf76
16 commits,
1 month ago
version 14
ce55824a
12 commits,
1 month ago
version 13
0fc5dbb9
11 commits,
1 month ago
version 12
3dbadc2e
10 commits,
1 month ago
version 11
4b4ef344
9 commits,
1 month ago
version 10
f1b71f97
8 commits,
1 year ago
version 9
7ba502f8
8 commits,
1 year ago
version 8
9793b8e7
7 commits,
1 year ago
version 7
fc1e7678
7 commits,
1 year ago
version 6
d86998ec
6 commits,
1 year ago
version 5
89022df9
5 commits,
1 year ago
version 4
6ccfd351
4 commits,
1 year ago
version 3
b64bc428
3 commits,
1 year ago
version 2
669285f5
2 commits,
1 year ago
version 1
5cf3d6d2
1 commit,
1 year ago
123 files
+
659
−
594
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
123
Search (e.g. *.vue) (Ctrl+P)
core/modules/ban/src/Plugin/migrate/source/d7/BlockedIps.php
+
5
−
5
Options
@@ -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