You are here

function clamav_help in ClamAV 7

Same name and namespace in other branches
  1. 6 clamav.module \clamav_help()

Implements hook_help().

File

./clamav.module, line 50
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/config/clamav':
      break;
  }
  return $output;
}