X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fmigrate_drupal%2Fsrc%2FAnnotation%2FMigrateField.php;h=ab2c0335c696ed1f42ddaff2fac3d12d03aab024;hb=refs%2Fheads%2Fd864;hp=ad78bc924d5f7220885d6db9d771bf58041fa72c;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/modules/migrate_drupal/src/Annotation/MigrateField.php b/web/core/modules/migrate_drupal/src/Annotation/MigrateField.php index ad78bc924..ab2c0335c 100644 --- a/web/core/modules/migrate_drupal/src/Annotation/MigrateField.php +++ b/web/core/modules/migrate_drupal/src/Annotation/MigrateField.php @@ -49,6 +49,26 @@ class MigrateField extends Plugin { * * @var int[] */ - public $core = []; + public $core; + + /** + * Identifies the system providing the data the field plugin will read. + * + * The source_module is expected to be the name of a Drupal module that must + * be installed in the source database. + * + * @var string + */ + public $source_module; + + /** + * Identifies the system handling the data the destination plugin will write. + * + * The destination_module is expected to be the name of a Drupal module on the + * destination site that must be installed. + * + * @var string + */ + public $destination_module; }