function _authcache_exclude in Authenticated User Page Caching (Authcache) 7.2
Private function called from authcache_init.
Turn off authcache, do not alter any aspect of this page.
Related topics
2 calls to _authcache_exclude()
- authcache_excluded in ./
authcache.module - Return true if this page is excluded from page caching.
- authcache_init in ./
authcache.module - Implements hook_init().
File
- ./
authcache.module, line 502 - Authenticated User Page Caching (and anonymous users, too!)
Code
function _authcache_exclude($reason = NULL) {
$excluded =& drupal_static(__FUNCTION__, FALSE);
if (!$excluded && !empty($reason)) {
$excluded = TRUE;
module_invoke_all('authcache_excluded', $reason);
}
return $excluded;
}