function ad_cache_memcache_help in Advertisement 5
Same name and namespace in other branches
- 5.2 cache/memcache/ad_cache_memcache.module \ad_cache_memcache_help()
- 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;
}