You are here

function status_messages_help in Status Messages 8.3

Same name and namespace in other branches
  1. 8.4 status_messages.module \status_messages_help()
  2. 8 status_messages.module \status_messages_help()
  3. 8.2 status_messages.module \status_messages_help()

Implements hook_help().

File

./status_messages.module, line 13
This is the module to make simple status messages.

Code

function status_messages_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.status_messages':
      $output = '';
      $output .= '<h3>' . t('Status Messages') . '</h3>';
      $output .= '<p>' . t('Status Messages which floats to the top right of the page as a pop-up message
            and has a close button.It has configuration until how much time we want to display the message For eg
            [5 seconds, 10 seconds, etc].After selected time status message will be faded out and will hide from
            the display.') . '</p>';
      return $output;
  }
}