diff --git a/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module
index a884a79..ecc4df4 100644
--- a/core/modules/views_ui/views_ui.module
+++ b/core/modules/views_ui/views_ui.module
@@ -13,6 +13,31 @@
 use Drupal\Core\Ajax\ReplaceCommand;
 
 /**
+ * Implements hook_help().
+ */
+function views_ui_help($path, $arg) {
+  $generator = Drupal::urlGenerator();
+  $url = $generator->generate('views_ui.list');
+  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)) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Creating a view') . '</dt>';
+      $output .= '<dd>' . t('From the admin/structure/views page, use: "Add View".') . '</dd>';
+      $output .= '<dt>' . t('Editing views') . '</dt>';
+      $output .= '<dd>' . t('From the admin/structure/views page, find the View in list that you want to edit, use: "Edit View". Use Views Edit Interface to change title, change fields, filters, sortings.') . '</dd>';
+      $output .= '<dt>' . t('Theming') . '</dt>';
+      $output .= '<dd>' . t('It is possible to set output format and a way to rewrite the output of most fields. Shows currently used templates and list of names that you could use for overwrite default.') . '</dd>';
+      $output .= '</dl>';
+      return $output;
+  }
+}
+
+/**
  * Implements hook_menu().
  */
 function views_ui_menu() {
