Mercurial > hg > isophonics-drupal-site
diff core/modules/migrate/src/Plugin/MigrateSourceInterface.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line diff
--- a/core/modules/migrate/src/Plugin/MigrateSourceInterface.php Fri Feb 23 15:51:18 2018 +0000 +++ b/core/modules/migrate/src/Plugin/MigrateSourceInterface.php Fri Feb 23 15:52:07 2018 +0000 @@ -53,9 +53,12 @@ * An associative array of field definitions keyed by field ID. Values are * associative arrays with a structure that contains the field type ('type' * key). The other keys are the field storage settings as they are returned - * by FieldStorageDefinitionInterface::getSettings(). As an example, for a - * composite source primary key that is defined by an integer and a - * string, the returned value might look like: + * by FieldStorageDefinitionInterface::getSettings(). + * + * Examples: + * + * A composite source primary key that is defined by an integer and a string + * might look like this: * @code * return [ * 'id' => [ @@ -70,6 +73,7 @@ * ], * ]; * @endcode + * * If 'type' points to a field plugin with multiple columns and needs to * refer to a column different than 'value', the key of that column will be * appended as a suffix to the plugin name, separated by dot ('.'). Example: @@ -80,9 +84,13 @@ * ], * ]; * @endcode - * Additional custom keys/values, that are not part of field storage - * definition, can be passed in definitions. The most common setting, passed - * along the ID definition, is 'alias' used by SqlBase source plugin: + * + * Additional custom keys/values that are not part of field storage + * definition can be added as shown below. The most common setting + * passed along to the ID definition is 'alias', used by the SqlBase source + * plugin in order to distinguish between ambiguous column names - for + * example, when a SQL source query joins two tables with the same column + * names. * @code * return [ * 'nid' => [