You are here

function systeminfo_help in System Information 6.3

Same name and namespace in other branches
  1. 5.2 systeminfo.module \systeminfo_help()
  2. 5 systeminfo.module \systeminfo_help()
  3. 6 systeminfo.module \systeminfo_help()
  4. 6.2 systeminfo.module \systeminfo_help()
  5. 7.3 systeminfo.module \systeminfo_help()
  6. 7.2 systeminfo.module \systeminfo_help()

Implementation of hook_help().

File

./systeminfo.module, line 13
This module displays information about the current state of the Drupal installation and system environment.

Code

function systeminfo_help($path, $arg) {
  switch ($path) {
    case 'admin/help#systeminfo':
      $output = '<p>' . t('The <em>System Information</em> module displays information about the current state of the Drupal installation and system environment.') . '</p>';
      $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@systeminfo">System Information module</a>.', array(
        '@systeminfo' => 'http://drupal.org/project/systeminfo',
      )) . '</p>';
      return $output;
    case 'admin/reports/systeminfo':
      $output = '<p>' . t('Information about the current state of the Drupal installation and system environment.') . '</p>';
      return $output;
    case 'admin/reports/systeminfo/drupal':
      $output = '<p>' . t('Information about the current state of the Drupal installation.') . '</p>';
      return $output;
    case 'admin/reports/systeminfo/php':
      $output = '<p>' . t('Information about the current state of PHP.') . '</p>';
      return $output;
    case 'admin/reports/systeminfo/database':
      $output = '<p>' . t('Information about the current state of the database system.') . '</p>';
      return $output;
  }
}