diff --git a/core/modules/migrate/migrate.module b/core/modules/migrate/migrate.module index 4f400b9..d49714a 100644 --- a/core/modules/migrate/migrate.module +++ b/core/modules/migrate/migrate.module @@ -2,8 +2,9 @@ /** * @file - * Allows the use of the Migrate API. + * Provides the Migrate API. */ + use Drupal\Core\Routing\RouteMatchInterface; /** @@ -14,7 +15,7 @@ function migrate_help($route_name, RouteMatchInterface $route_match) { case 'help.page.migrate': $output = '

' . t('About') . '

'; $output .= '

'; - $output .= t('The Migrate API provides services for migrating data from one place to another (usually, importing it into Drupal entities). The migrate module implements a general-purpose framework. The Migrate API does not provide a GUI. For more information, see the online documentation for the Migrate module.', array('!migrate' => 'https://www.drupal.org/documentation/modules/migrate')); + $output .= t('The Migrate API provides services for migrating data from one place to another (usually, importing it into Drupal entities). The Migrate module implements a general-purpose framework. The Migrate API does not provide a user interface. For more information, see the online documentation for the Migrate module.', array('!migrate' => 'https://www.drupal.org/documentation/modules/migrate')); $output .= '

'; return $output; }