You are here

function opigno_messaging_help in Opigno messaging 3.x

Same name and namespace in other branches
  1. 8 opigno_messaging.module \opigno_messaging_help()

Implements hook_help().

File

./opigno_messaging.module, line 28
Contains opigno_messaging.module.

Code

function opigno_messaging_help($route_name, RouteMatchInterface $route_match) {

  // Main module help for the opigno_messaging module.
  if ($route_name === 'help.page.opigno_messaging') {
    $output = '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t('Opigno app for messaging') . '</p>';
    return $output;
  }
}