Mercurial > hg > isophonics-drupal-site
comparison core/modules/migrate/src/Plugin/MigrateSourceInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 7a779792577d |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
85 * ]; | 85 * ]; |
86 * @endcode | 86 * @endcode |
87 * | 87 * |
88 * Additional custom keys/values that are not part of field storage | 88 * Additional custom keys/values that are not part of field storage |
89 * definition can be added as shown below. The most common setting | 89 * definition can be added as shown below. The most common setting |
90 * passed along to the ID definition is 'alias', used by the SqlBase source | 90 * passed along to the ID definition is table 'alias', used by the SqlBase |
91 * plugin in order to distinguish between ambiguous column names - for | 91 * source plugin in order to distinguish between ambiguous column names - |
92 * example, when a SQL source query joins two tables with the same column | 92 * for example, when a SQL source query joins two tables with the same |
93 * names. | 93 * column names. |
94 * @code | 94 * @code |
95 * return [ | 95 * return [ |
96 * 'nid' => [ | 96 * 'nid' => [ |
97 * 'type' => 'integer', | 97 * 'type' => 'integer', |
98 * 'alias' => 'n', | 98 * 'alias' => 'n', |