function ad_cache_memcache_help in Advertisement 6
Same name and namespace in other branches
- 5.2 cache/memcache/ad_cache_memcache.module \ad_cache_memcache_help()
- 5 cache/memcache/ad_cache_memcache.module \ad_cache_memcache_help()
Implementation of hook_help().
File
- cache/
memcache/ ad_cache_memcache.module, line 57 - A plug in for the ad.module, integrating the ad module with memcache.
Code
function ad_cache_memcache_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/modules#description':
$output = t('Utilize memcached to improve the performance of the ad module.');
break;
}
return $output;
}