diff --git a/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module
index 9e61cfd..035752b 100644
--- a/core/modules/views_ui/views_ui.module
+++ b/core/modules/views_ui/views_ui.module
@@ -13,6 +13,24 @@
 use Drupal\Core\Ajax\ReplaceCommand;
 
 /**
+ * Implements hook_help().
+ */
+function views_ui_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#views_ui':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The Views UI module provides the <a href="@views-configuration">administration interface</a> to create and edit your Views.',
+        array('@views-configuration' => url('admin/structure/views'))) . '</p>';
+      $output .= '<h3>' . t('Usage') . '</h3>';
+      $output .= '<p>' . t('Create lists and queries from your database.') . '</p>';
+      $output .= '<p>' . t('You can turn this module off if you have finished making all the views.') . '</p>';
+      $output .= '<p>' . t('Your views will work no matter you have the Views UI module enabled, or not.') . '</p>';
+      return $output;
+  }
+}
+
+/**
  * Implements hook_menu().
  */
 function views_ui_menu() {
