You are here

function ad_cache_file_help in Advertisement 6.2

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

Implementation of hook_help().

File

cache/file/ad_cache_file.module, line 19
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, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/modules#description':
      $output = t('Can improve the performance of the ad module utilizing file caching.');
      break;
  }
  return $output;
}