You are here

function system_status_help in System Status 8.2

Same name and namespace in other branches
  1. 8 system_status.module \system_status_help()
  2. 6.2 system_status.module \system_status_help()
  3. 7 system_status.module \system_status_help()

Implements hook_help().

Displays help and module information.

File

./system_status.module, line 13
Drupal system status.

Code

function system_status_help($path, $arg) {
  switch ($path) {
    case 'admin/help#system_status':
      $output = '<h2>' . $this
        ->t('System Status module information') . '</h2>';
      $output .= '<p>' . $this
        ->t('System Status provides an easy way to get an overview of all the available updates for your Drupal websites.') . '<br/>';
      $output .= $this
        ->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>' . $this
        ->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>' . $this
        ->t('How does it work?') . '</p>';
      $output .= '<ul>';
      $output .= '<li>' . $this
        ->t('Enable the System Status module on your Drupal website') . '</li>';
      $output .= '<li>' . $this
        ->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;
  }
}