From 64166a5ccc01b4128df4ab1f99c95520c5859f84 Mon Sep 17 00:00:00 2001
From: AmyJune <amyjune@hook42.com>
Date: Sat, 17 Feb 2018 08:44:56 -0800
Subject: [PATCH] Admin Status - added roadmap to help page

---
 admin_status.module | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/admin_status.module b/admin_status.module
index 57dc3ba..b516d10 100644
--- a/admin_status.module
+++ b/admin_status.module
@@ -8,7 +8,7 @@
 /**
  * Implements hook_help().
  */
-function admin_status_help($route_name) {
+function admin_status_help($route_name) { 
   switch ($route_name) {
     case 'help.page.admin_status':
       $output = '';
@@ -20,8 +20,13 @@ function admin_status_help($route_name) {
       $output .= '<dt>' . t('To submit bug reports and feature suggestions, or to track changes') . '</dt>';
       $output .= '<dd>' . t('Visit the <a href=":project_issue_queue_link">project issue queue on Drupal.org</a>.', [':project_issue_queue_link' => 'https://drupal.org/project/issues/admin_status']) . '</dd>';
       $output .= '</dl>';
+      $output .= '<h3>' . t('Roadmap') . '</h3>';
+      $output .= '<p>' . t('We are currently working on the Drupal 8 version. The Drupal 7 version will happen after a basic D8 version is at least in beta.') . '</p>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('List of possible plugins for this module') . '</dt>';
+      $output .= '<dd>' . t('Visit issue  <a href=":issue_link">2683051</a> to add to the list of possible plugins.', [':issue_link' => 'https://www.drupal.org/project/admin_status/issues/2683051']) . '</dd>';
+      $output .= '</dl>';
       return $output;
-
     case 'admin_status.admin_status_form':
       return '<p>' . t('Use this page to configure the Admin Status plugins that are installed in the system.') . '</p>';
   }
-- 
2.14.1

