diff --git a/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module
index a884a79..fa74dec 100644
--- a/core/modules/views_ui/views_ui.module
+++ b/core/modules/views_ui/views_ui.module
@@ -13,6 +13,34 @@
 use Drupal\Core\Ajax\ReplaceCommand;
 
 /**
+ * Implements hook_help().
+ */
+function views_ui_help($path, $arg) {
+  $url_list_views = \Drupal::url('views_ui.list');
+  $url_help_views = \Drupal::url('help.page', array('name' => 'views_ui'));
+  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. Visit <a href="!views-help">Views help page</a> for more information about Views module.',
+        array('!views-configuration' => $url_list_views, 'views-help' => $url_help_views)) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Creating a View.') . '</dt>';
+      $output .= '<dd>' . t('From the <a href="!views-configuration">Views list</a> page, use: "Add new view".', array('!views-configuration' => $url_list_views)) . '</dd>';
+      $output .= '<dt>' . t('Editing Views') . '</dt>';
+      $output .= '<dd>' . t('From the <a href="!views-configuration">Views list</a> page, find the view you want to edit, use: "Edit". It is possible to change title, change fields, filters, sortings.',
+        array('!views-configuration' => $url_list_views)) . '</dd>';
+      $output .= '<dt>' . t('Exporting and Importing') . '</dt>';
+      $output .= '<dd>' . t('Views can be exported and imported across sites. It is possible to export Views in code, for example, if you want to have versioned control over changes in views.') . '</dd>';
+      $output .= '<dt>' . t('Theming') . '</dt>';
+      $output .= '<dd>' . t('It is possible to set output format and rewrite output of most of the fields. Available list of currently used templates and list of suggestion names to override them.') . '</dd>';
+      $output .= '</dl>';
+      return $output;
+  }
+}
+
+/**
  * Implements hook_menu().
  */
 function views_ui_menu() {
