comparison core/modules/migrate_drupal/src/Annotation/MigrateField.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children c2387f117808
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
47 /** 47 /**
48 * The Drupal core version(s) this plugin applies to. 48 * The Drupal core version(s) this plugin applies to.
49 * 49 *
50 * @var int[] 50 * @var int[]
51 */ 51 */
52 public $core = []; 52 public $core;
53
54 /**
55 * Identifies the system providing the data the field plugin will read.
56 *
57 * The source_module is expected to be the name of a Drupal module that must
58 * must be installed in the source database.
59 *
60 * @var string
61 */
62 public $source_module;
63
64 /**
65 * Identifies the system handling the data the destination plugin will write.
66 *
67 * The destination_module is expected to be the name of a Drupal module on the
68 * destination site that must be installed.
69 *
70 * @var string
71 */
72 public $destination_module;
53 73
54 } 74 }