From 7d37e31f3c55ce6ed27d66f24c8ecad7549b9079 Mon Sep 17 00:00:00 2001 From: Gabor Hojtsy <gabor@hojtsy.hu> Date: Sat, 13 Jan 2018 07:34:08 +0100 Subject: [PATCH] Issue #2862744 by masipila, heddn: Add documentation to EntityBaseFieldOverride destination plugin (cherry picked from commit a0f31bc76352b718237048ef83668113a35883a1) --- .../destination/EntityBaseFieldOverride.php | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/core/modules/migrate/src/Plugin/migrate/destination/EntityBaseFieldOverride.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityBaseFieldOverride.php index 75232490b7b3..e6b3682eb0bb 100644 --- a/core/modules/migrate/src/Plugin/migrate/destination/EntityBaseFieldOverride.php +++ b/core/modules/migrate/src/Plugin/migrate/destination/EntityBaseFieldOverride.php @@ -5,7 +5,42 @@ use Drupal\migrate\Row; /** - * Provides entity base field override plugin. + * Provides entity base field override destination plugin. + * + * Base fields are non-configurable fields that always exist on a given entity + * type, like the 'title', 'created' and 'sticky' fields of the 'node' entity + * type. Some entity types can have bundles, for example the node content types. + * The base fields exist on all bundles but the bundles can override the + * definitions. For example, the label for node 'title' base field can be + * different on different content types. + * + * Example: + * + * The example below migrates the node 'sticky' settings for each content type. + * @code + * id: d6_node_setting_sticky + * label: Node type 'sticky' setting + * migration_tags: + * - Drupal 6 + * source: + * plugin: d6_node_type + * constants: + * entity_type: node + * field_name: sticky + * process: + * entity_type: 'constants/entity_type' + * bundle: type + * field_name: 'constants/field_name' + * label: + * plugin: default_value + * default_value: 'Sticky at the top of lists' + * 'default_value/0/value': 'options/sticky' + * destination: + * plugin: entity:base_field_override + * migration_dependencies: + * required: + * - d6_node_type + * @endcode * * @MigrateDestination( * id = "entity:base_field_override" -- GitLab