You are here

function ad_cache_file_help in Advertisement 5.2

Same name and namespace in other branches
  1. 5 cache/file/ad_cache_file.module \ad_cache_file_help()
  2. 6.3 cache/file/ad_cache_file.module \ad_cache_file_help()
  3. 6 cache/file/ad_cache_file.module \ad_cache_file_help()
  4. 6.2 cache/file/ad_cache_file.module \ad_cache_file_help()
  5. 7 cache/file/ad_cache_file.module \ad_cache_file_help()

Drupal _help hook.

File

cache/file/ad_cache_file.module, line 15
A plug in for the ad.module, providing a file cache mechanism for improved performance when displaying ads.

Code

function ad_cache_file_help($path) {
  switch ($path) {
    case 'admin/modules#description':
      $output = t('Can improve the performance of the ad module utilizing file caching.');
      break;
  }
  return $output;
}