From f1f6525cf8740fd80329d28e851b645f9967411d Mon Sep 17 00:00:00 2001 From: LOBsTerr <LOBsTerr@645020.no-reply.drupal.org> Date: Tue, 15 Aug 2017 15:07:16 -0600 Subject: [PATCH] Issue #2892143 by LOBsTerr, ultimike: migrate_example : BeerTerm plugin has the wrong description for the fields --- migrate_example/src/Plugin/migrate/source/BeerTerm.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migrate_example/src/Plugin/migrate/source/BeerTerm.php b/migrate_example/src/Plugin/migrate/source/BeerTerm.php index f8ea51ef..c03fa152 100644 --- a/migrate_example/src/Plugin/migrate/source/BeerTerm.php +++ b/migrate_example/src/Plugin/migrate/source/BeerTerm.php @@ -50,9 +50,9 @@ class BeerTerm extends SqlBase { * to humans what the field represents. You should always */ $fields = [ - 'style' => $this->t('Account ID'), - 'details' => $this->t('Blocked/Allowed'), - 'style_parent' => $this->t('Registered date'), + 'style' => $this->t('Beer style'), + 'details' => $this->t('Style details'), + 'style_parent' => $this->t('Parent style'), // These values are not currently migrated - it's OK to skip fields you // don't need. 'region' => $this->t('Region the style is associated with'), -- GitLab