diff --git a/core/modules/migrate_drupal/migrate_drupal.module b/core/modules/migrate_drupal/migrate_drupal.module index f76e67c..fd4ccbc 100644 --- a/core/modules/migrate_drupal/migrate_drupal.module +++ b/core/modules/migrate_drupal/migrate_drupal.module @@ -1,6 +1,13 @@ setClass('Drupal\migrate_drupal\Entity\Migration') ->setHandlerClass('storage', 'Drupal\migrate_drupal\MigrationStorage'); } + +/** + * Implements hook_help(). + */ +function migrate_drupal_help($route_name, RouteMatchInterface $route_match) { + switch ($route_name) { + case 'help.page.migrate_drupal': + $output = ''; + $output .= '

' . t('About') . '

'; + $output .= '

' . t('The Migrate Drupal module provides a framework based on the Migrate module to facilitate migration from a Drupal (6, 7, or 8) site to your website. It does not provide a user interface. For more information, see the online documentation for the Migrate Drupal module.', array('!migrate' => \Drupal::url('help.page', array('name' => 'migrate')), '!migrate_drupal' => 'https://www.drupal.org/documentation/modules/migrate_drupal')) . '

'; + return $output; + } +}