diff --git a/core/modules/migrate_drupal/migrate_drupal.module b/core/modules/migrate_drupal/migrate_drupal.module
index e69de29..c6d618c 100644
--- a/core/modules/migrate_drupal/migrate_drupal.module
+++ b/core/modules/migrate_drupal/migrate_drupal.module
@@ -0,0 +1,14 @@
+<?php
+
+/**
+ * Implements hook_help().
+ */
+function migrate_drupal_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#migrate_drupal':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('This is a framework based on the Migrate API to ease building migrations from one Drupal (6, 7 and 8) site to another.') . '</p>';
+      return $output;
+  }
+}
