You are here

function drupalchat_help in DrupalChat 8

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_help()
  2. 6 drupalchat.module \drupalchat_help()
  3. 7.2 drupalchat.module \drupalchat_help()
  4. 7 drupalchat.module \drupalchat_help()

Implements hook_help().

File

./drupalchat.module, line 294
Module code for DrupalChat.

Code

function drupalchat_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.drupalchat':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides one on one chat.') . '</p>';
      return $output;
  }
}