function clamav_help in ClamAV 6
Same name and namespace in other branches
- 7 clamav.module \clamav_help()
Implementation of hook_help().
File
- ./
clamav.module, line 39 - Integrate ClamAV to allow uploaded files to be scanned for viruses.
Code
function clamav_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#clamav":
$output .= '<p>' . t('Clam AntiVirus is an open source anti-virus toolkit for UNIX.') . '</p>';
$output .= '<p>' . t('The ClamAV module allows files which are uploaded to Drupal to be scanned by Clam AntiVirus.') . '<br />';
$output .= t('The module does not install ClamAV - visit <a href="http://www.clamav.net/">the ClamAV website</a> for help installing ClamAV.') . '</p>';
break;
case 'admin/settings/clamav':
break;
}
return $output;
}