function authcache_p13n_authcache_debug_exclude in Authenticated User Page Caching (Authcache) 7.2
Same name in this branch
- 7.2 modules/authcache_debug/authcache_debug.api.php \authcache_p13n_authcache_debug_exclude()
- 7.2 modules/authcache_p13n/authcache_p13n.module \authcache_p13n_authcache_debug_exclude()
Prevent that debug info is recorded on a given request.
Return value
bool|NULL TRUE if no debug info should be recorded, otherwise NULL.
File
- modules/
authcache_debug/ authcache_debug.api.php, line 13 - API documentation for hooks exposed by Authcache Debug.
Code
function authcache_p13n_authcache_debug_exclude() {
if (authcache_p13n_is_authcache_p13n_request()) {
return TRUE;
}
}