diff --git a/core/modules/migrate_drupal/migrate_drupal.module b/core/modules/migrate_drupal/migrate_drupal.module index 7b85d80..061bd17 100644 --- a/core/modules/migrate_drupal/migrate_drupal.module +++ b/core/modules/migrate_drupal/migrate_drupal.module @@ -9,3 +9,16 @@ function migrate_drupal_entity_type_alter(array &$entity_types) { ->setClass('Drupal\migrate_drupal\Entity\Migration') ->setControllerClass('storage', 'Drupal\migrate_drupal\MigrationStorage'); } + +/** + * Implements hook_help(). + */ +function migrate_drupal_help($path, $arg) { + switch ($path) { + case 'help.page.migrate_drupal': + $output = ''; + $output .= '

' . t('About') . '

'; + $output .= '

' . t('This is a framework based on the Migrate API to ease building migrations from one Drupal (6, 7 and 8) site to another. For more information, see the online documentation for the Migrate Drupal module.', array('!menu' => 'https://drupal.org/documentation/modules/migrate_drupal/')) . '

'; + return $output; + } +}