function system_status_help in System Status 7
Same name and namespace in other branches
- 8.2 system_status.module \system_status_help()
- 8 system_status.module \system_status_help()
- 6.2 system_status.module \system_status_help()
Implements hook_help().
Displays help and module information.
File
- ./
system_status.module, line 12 - Drupal system status
Code
function system_status_help($path, $arg) {
switch ($path) {
case 'admin/help#system_status':
return '<p>' . t("A module that provides the functionality to remote check on the health of your site and modules.") . '</p>';
break;
}
}