hospital_management-8.x-1.x-dev/web/modules/hms/hms_departments/hms_departments.module
web/modules/hms/hms_departments/hms_departments.module
<?php
/**
* @file
* Contains hms_departments.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function hms_departments_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the hms_departments module.
case 'help.page.hms_departments':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Module for custom functionality for departments') . '</p>';
return $output;
default:
}
}
