You are here

function ad_cache_memcache_help in Advertisement 5

Same name and namespace in other branches
  1. 5.2 cache/memcache/ad_cache_memcache.module \ad_cache_memcache_help()
  2. 6 cache/memcache/ad_cache_memcache.module \ad_cache_memcache_help()

Drupal _help hook.

File

cache/memcache/ad_cache_memcache.module, line 53
A plug in for the ad.module, integrating the ad module with memcache.

Code

function ad_cache_memcache_help($path) {
  switch ($path) {
    case 'admin/modules#description':
      $output = t('Utilize memcached to improve the performance of the ad module.');
      break;
  }
  return $output;
}