function opigno_messaging_help in Opigno messaging 8
Same name and namespace in other branches
- 3.x opigno_messaging.module \opigno_messaging_help()
Implements hook_help().
File
- ./
opigno_messaging.module, line 25 - Contains opigno_messaging.module.
Code
function opigno_messaging_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the opigno_messaging module.
case 'help.page.opigno_messaging':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Opigno app for messaging') . '</p>';
return $output;
default:
}
}