function system_status_help in System Status 6.2
Same name and namespace in other branches
- 8.2 system_status.module \system_status_help()
- 8 system_status.module \system_status_help()
- 7 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':
$output = '<h2>' . t('System Status module information') . '</h2>';
$output .= '<p>' . t('System Status provides an easy way to get an overview of all the available updates for your Drupal websites.') . '<br/>';
$output .= t('Enable the System Status module on all your Drupal websites and allow reporting to DrupalStatus.org for a centralized overview and email summaries of available updates and installed versions.') . '</p>';
$output .= '<p>' . t('The accompanying service offered by DrupalStatus.org is free but if you do not want to use this service this lightweight module allows you to built your own overviews and dashboard.') . '</p>';
$output .= '<p>' . t('How does it work?') . '</p>';
$output .= '<ul>';
$output .= '<li>' . t('Enable the System Status module on your Drupal website') . '</li>';
$output .= '<li>' . t('Click the "Add this site to your DrupalStatus.org overview" button to be redirected to the DrupalStatus website with the necessary credentials.') . '</li>';
$output .= '</ul>';
return $output;
break;
}
}