From 93bea22bd30ae78d3334d3e210676adbf2365770 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Mon, 19 Sep 2016 12:57:00 +0100
Subject: [PATCH] Issue #2784465 by naveenvalecha, martin107: Update help text
 for the Outside In module

---
 core/modules/outside_in/outside_in.module | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/core/modules/outside_in/outside_in.module b/core/modules/outside_in/outside_in.module
index d608ecd6d149..21f1a595cc16 100644
--- a/core/modules/outside_in/outside_in.module
+++ b/core/modules/outside_in/outside_in.module
@@ -17,9 +17,12 @@ function outside_in_help($route_name, RouteMatchInterface $route_match) {
   switch ($route_name) {
     case 'help.page.outside_in':
       $output = '<h3>' . t('About') . '</h3>';
-      // @todo Update help text: https://www.drupal.org/node/2784465.
-      $output .= '<p>' . t('The Outside-In module is something that we should have help for. For more information, see the <a href=":outside-in-documentation">online documentation for the Outside-In module</a>.', [':outside-in-documentation' => 'https://www.drupal.org/documentation/modules/outside_in']) . '</p>';
-      return $output;
+      $output .= '<p>' . t('The outside-in module provides an \'edit mode\' in which clicking on a block opens a side tray which allows configuration to be altered without leaving the page.For more information, see the <a href=":outside-in-documentation">online documentation for the Outside-In module</a>.', [':outside-in-documentation' => 'https://www.drupal.org/documentation/modules/outside_in']) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Editing blocks on the same page in the side tray') . '</dt>';
+      $output .= '</dl>';
+      return ['#markup' => $output];
   }
 }
 
-- 
GitLab