function systeminfo_help in System Information 7.3
Same name and namespace in other branches
- 5.2 systeminfo.module \systeminfo_help()
- 5 systeminfo.module \systeminfo_help()
- 6.3 systeminfo.module \systeminfo_help()
- 6 systeminfo.module \systeminfo_help()
- 6.2 systeminfo.module \systeminfo_help()
- 7.2 systeminfo.module \systeminfo_help()
Implements 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 = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module displays information about the current state of the Drupal installation and system environment. 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;
}
}