Skip to content
Snippets Groups Projects
Verified Commit 8c0975a4 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3421016 by quietone, godotislate: Convert MigrateProcessPlugin plugin...

Issue #3421016 by quietone, godotislate: Convert MigrateProcessPlugin plugin discovery to attributes
parent 38e722aa
No related branches found
No related tags found
29 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!9470[10.3.x-only-DO-NOT-MERGE]: #3331771 Fix file_get_contents(): Passing null to parameter,!8540Issue #3457061: Bootstrap Modal dialog Not closing after 10.3.0 Update,!8528Issue #3456871 by Tim Bozeman: Support NULL services,!8373Issue #3427374 by danflanagan8, Vighneshh: taxonomy_tid ViewsArgumentDefault...,!7526Expose roles in response,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3531Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3478Issue #3337882: Deleted menus are not removed from content type config,!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2794Issue #3100732: Allow specifying `meta` data on JSON:API objects,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #139476 passed
Pipeline: drupal

#139478

    Showing
    with 55 additions and 85 deletions
    ...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
    use Drupal\Core\Entity\EntityStorageInterface; use Drupal\Core\Entity\EntityStorageInterface;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateLookupInterface; use Drupal\migrate\MigrateLookupInterface;
    use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    ...@@ -11,11 +12,7 @@ ...@@ -11,11 +12,7 @@
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
    /** #[MigrateProcess('block_plugin_id')]
    * @MigrateProcessPlugin(
    * id = "block_plugin_id"
    * )
    */
    class BlockPluginId extends ProcessPluginBase implements ContainerFactoryPluginInterface { class BlockPluginId extends ProcessPluginBase implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -3,16 +3,13 @@ ...@@ -3,16 +3,13 @@
    namespace Drupal\block\Plugin\migrate\process; namespace Drupal\block\Plugin\migrate\process;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\Plugin\migrate\process\StaticMap; use Drupal\migrate\Plugin\migrate\process\StaticMap;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
    /** #[MigrateProcess('block_region')]
    * @MigrateProcessPlugin(
    * id = "block_region"
    * )
    */
    class BlockRegion extends StaticMap implements ContainerFactoryPluginInterface { class BlockRegion extends StaticMap implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
    namespace Drupal\block\Plugin\migrate\process; namespace Drupal\block\Plugin\migrate\process;
    use Drupal\Core\Block\BlockPluginInterface; use Drupal\Core\Block\BlockPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    ...@@ -10,10 +11,9 @@ ...@@ -10,10 +11,9 @@
    // cspell:ignore whois // cspell:ignore whois
    /** /**
    * @MigrateProcessPlugin( * Determines the block settings.
    * id = "block_settings"
    * )
    */ */
    #[MigrateProcess('block_settings')]
    class BlockSettings extends ProcessPluginBase { class BlockSettings extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -3,17 +3,14 @@ ...@@ -3,17 +3,14 @@
    namespace Drupal\block\Plugin\migrate\process; namespace Drupal\block\Plugin\migrate\process;
    use Drupal\Core\Config\Config; use Drupal\Core\Config\Config;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
    /** #[MigrateProcess('block_theme')]
    * @MigrateProcessPlugin(
    * id = "block_theme"
    * )
    */
    class BlockTheme extends ProcessPluginBase implements ContainerFactoryPluginInterface { class BlockTheme extends ProcessPluginBase implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
    use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Extension\ModuleHandlerInterface;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateLookupInterface; use Drupal\migrate\MigrateLookupInterface;
    use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    ...@@ -12,11 +13,7 @@ ...@@ -12,11 +13,7 @@
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
    /** #[MigrateProcess('block_visibility')]
    * @MigrateProcessPlugin(
    * id = "block_visibility"
    * )
    */
    class BlockVisibility extends ProcessPluginBase implements ContainerFactoryPluginInterface { class BlockVisibility extends ProcessPluginBase implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
    namespace Drupal\block\Plugin\migrate\process; namespace Drupal\block\Plugin\migrate\process;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateLookupInterface; use Drupal\migrate\MigrateLookupInterface;
    use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    ...@@ -30,11 +31,8 @@ ...@@ -30,11 +31,8 @@
    * the source row. * the source row.
    * *
    * @see \Drupal\migrate\Plugin\MigrateProcessInterface * @see \Drupal\migrate\Plugin\MigrateProcessInterface
    *
    * @MigrateProcessPlugin(
    * id = "roles_lookup"
    * )
    */ */
    #[MigrateProcess('roles_lookup')]
    class RolesLookup extends ProcessPluginBase implements ContainerFactoryPluginInterface { class RolesLookup extends ProcessPluginBase implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
    use Drupal\Component\Plugin\Exception\PluginNotFoundException; use Drupal\Component\Plugin\Exception\PluginNotFoundException;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
    use Drupal\migrate\Plugin\migrate\process\StaticMap; use Drupal\migrate\Plugin\migrate\process\StaticMap;
    ...@@ -11,11 +12,7 @@ ...@@ -11,11 +12,7 @@
    use Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface; use Drupal\migrate_drupal\Plugin\MigrateFieldPluginManagerInterface;
    use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
    /** #[MigrateProcess('field_type')]
    * @MigrateProcessPlugin(
    * id = "field_type"
    * )
    */
    class FieldType extends StaticMap implements ContainerFactoryPluginInterface { class FieldType extends StaticMap implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
    use Drupal\Component\Plugin\Exception\PluginNotFoundException; use Drupal\Component\Plugin\Exception\PluginNotFoundException;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateException; use Drupal\migrate\MigrateException;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
    ...@@ -36,11 +37,8 @@ ...@@ -36,11 +37,8 @@
    * *
    * @see \Drupal\migrate\Plugin\MigrateProcessInterface * @see \Drupal\migrate\Plugin\MigrateProcessInterface
    * @see \Drupal\migrate_drupal\Plugin\MigrateFieldInterface; * @see \Drupal\migrate_drupal\Plugin\MigrateFieldInterface;
    *
    * @MigrateProcessPlugin(
    * id = "process_field"
    * )
    */ */
    #[MigrateProcess('process_field')]
    class ProcessField extends ProcessPluginBase implements ContainerFactoryPluginInterface { class ProcessField extends ProcessPluginBase implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -2,17 +2,15 @@ ...@@ -2,17 +2,15 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    /** /**
    * Set the default field settings. * Set the default field settings.
    *
    * @MigrateProcessPlugin(
    * id = "field_formatter_settings_defaults"
    * )
    */ */
    #[MigrateProcess('field_formatter_settings_defaults')]
    class FieldFormatterSettingsDefaults extends ProcessPluginBase { class FieldFormatterSettingsDefaults extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    ...@@ -9,10 +10,9 @@ ...@@ -9,10 +10,9 @@
    // cspell:ignore imagefield // cspell:ignore imagefield
    /** /**
    * @MigrateProcessPlugin( * Determines the default field settings.
    * id = "d6_field_instance_defaults"
    * )
    */ */
    #[MigrateProcess('d6_field_instance_defaults')]
    class FieldInstanceDefaults extends ProcessPluginBase { class FieldInstanceDefaults extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,18 +2,18 @@ ...@@ -2,18 +2,18 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    /** /**
    * Determines the settings property and translation for boolean fields. * Determines the settings property and translation for boolean fields.
    *
    * @MigrateProcessPlugin(
    * id = "d6_field_instance_option_translation",
    * handle_multiples = TRUE
    * )
    */ */
    #[MigrateProcess(
    id: "d6_field_instance_option_translation",
    handle_multiples: TRUE,
    )]
    class FieldInstanceOptionTranslation extends ProcessPluginBase { class FieldInstanceOptionTranslation extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    ...@@ -9,10 +10,9 @@ ...@@ -9,10 +10,9 @@
    // cspell:ignore filefield imagefield // cspell:ignore filefield imagefield
    /** /**
    * @MigrateProcessPlugin( * Determines the field instance settings.
    * id = "d6_field_field_settings"
    * )
    */ */
    #[MigrateProcess('d6_field_field_settings')]
    class FieldInstanceSettings extends ProcessPluginBase { class FieldInstanceSettings extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    ...@@ -10,11 +11,8 @@ ...@@ -10,11 +11,8 @@
    /** /**
    * Get the field instance widget settings. * Get the field instance widget settings.
    *
    * @MigrateProcessPlugin(
    * id = "field_instance_widget_settings"
    * )
    */ */
    #[MigrateProcess('field_instance_widget_settings')]
    class FieldInstanceWidgetSettings extends ProcessPluginBase { class FieldInstanceWidgetSettings extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,18 +2,18 @@ ...@@ -2,18 +2,18 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    /** /**
    * Determines the allowed values translation for select lists. * Determines the allowed values translation for select lists.
    *
    * @MigrateProcessPlugin(
    * id = "d6_field_option_translation",
    * handle_multiples = TRUE
    * )
    */ */
    #[MigrateProcess(
    id: "d6_field_option_translation",
    handle_multiples: TRUE,
    )]
    class FieldOptionTranslation extends ProcessPluginBase { class FieldOptionTranslation extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    ...@@ -10,11 +11,8 @@ ...@@ -10,11 +11,8 @@
    /** /**
    * Get the field settings. * Get the field settings.
    *
    * @MigrateProcessPlugin(
    * id = "field_settings"
    * )
    */ */
    #[MigrateProcess('field_settings')]
    class FieldSettings extends ProcessPluginBase { class FieldSettings extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
    namespace Drupal\field\Plugin\migrate\process\d6; namespace Drupal\field\Plugin\migrate\process\d6;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateException; use Drupal\migrate\MigrateException;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    ...@@ -9,11 +10,8 @@ ...@@ -9,11 +10,8 @@
    /** /**
    * Gives us a chance to set per field defaults. * Gives us a chance to set per field defaults.
    *
    * @MigrateProcessPlugin(
    * id = "d6_field_type_defaults"
    * )
    */ */
    #[MigrateProcess('d6_field_type_defaults')]
    class FieldTypeDefaults extends ProcessPluginBase { class FieldTypeDefaults extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
    namespace Drupal\field\Plugin\migrate\process\d7; namespace Drupal\field\Plugin\migrate\process\d7;
    use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\MigrateLookupInterface; use Drupal\migrate\MigrateLookupInterface;
    use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
    ...@@ -50,11 +51,8 @@ ...@@ -50,11 +51,8 @@
    * *
    * @see core/modules/comment/migrations/d7_comment_type.yml * @see core/modules/comment/migrations/d7_comment_type.yml
    * @see core/modules/field/migrations/d7_field_instance.yml * @see core/modules/field/migrations/d7_field_instance.yml
    *
    * * @MigrateProcessPlugin(
    * id = "field_bundle"
    * )
    */ */
    #[MigrateProcess('field_bundle')]
    class FieldBundle extends ProcessPluginBase implements ContainerFactoryPluginInterface { class FieldBundle extends ProcessPluginBase implements ContainerFactoryPluginInterface {
    /** /**
    ......
    ...@@ -2,15 +2,12 @@ ...@@ -2,15 +2,12 @@
    namespace Drupal\field\Plugin\migrate\process\d7; namespace Drupal\field\Plugin\migrate\process\d7;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    /** #[MigrateProcess('d7_field_instance_defaults')]
    * @MigrateProcessPlugin(
    * id = "d7_field_instance_defaults"
    * )
    */
    class FieldInstanceDefaults extends ProcessPluginBase { class FieldInstanceDefaults extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,18 +2,18 @@ ...@@ -2,18 +2,18 @@
    namespace Drupal\field\Plugin\migrate\process\d7; namespace Drupal\field\Plugin\migrate\process\d7;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    /** /**
    * Determines the settings property and translation for boolean fields. * Determines the settings property and translation for boolean fields.
    *
    * @MigrateProcessPlugin(
    * id = "d7_field_instance_option_translation",
    * handle_multiples = TRUE
    * )
    */ */
    #[MigrateProcess(
    id: "d7_field_instance_option_translation",
    handle_multiples: TRUE,
    )]
    class FieldInstanceOptionTranslation extends ProcessPluginBase { class FieldInstanceOptionTranslation extends ProcessPluginBase {
    /** /**
    ......
    ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
    namespace Drupal\field\Plugin\migrate\process\d7; namespace Drupal\field\Plugin\migrate\process\d7;
    use Drupal\migrate\Attribute\MigrateProcess;
    use Drupal\migrate\MigrateExecutableInterface; use Drupal\migrate\MigrateExecutableInterface;
    use Drupal\migrate\ProcessPluginBase; use Drupal\migrate\ProcessPluginBase;
    use Drupal\migrate\Row; use Drupal\migrate\Row;
    ...@@ -9,10 +10,11 @@ ...@@ -9,10 +10,11 @@
    // cspell:ignore entityreference // cspell:ignore entityreference
    /** /**
    * @MigrateProcessPlugin( * Determines the field instance settings.
    * id = "d7_field_instance_settings"
    * )
    */ */
    #[MigrateProcess(
    id: "d7_field_instance_settings"
    )]
    class FieldInstanceSettings extends ProcessPluginBase { class FieldInstanceSettings extends ProcessPluginBase {
    /** /**
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment