function authcache_debug_authcache_request_exclude in Authenticated User Page Caching (Authcache) 7.2
Implements hook_authcache_request_exclude().
File
- modules/
authcache_debug/ authcache_debug.module, line 252 - Debug widget for Authcache.
Code
function authcache_debug_authcache_request_exclude() {
if (arg(0) === 'authcache-debug' && arg(1) === 'ajax') {
return t('Caching disabled on authcache debug ajax callback.');
}
}