function authcache_p13n_is_authcache_p13n_request in Authenticated User Page Caching (Authcache) 7.2
Return TRUE if the P13n front controller was used for this request.
Related topics
6 calls to authcache_p13n_is_authcache_p13n_request()
- authcache_field_field_attach_view_alter in modules/
authcache_field/ authcache_field.module - Implements hook_field_attach_view_alter().
- authcache_p13n_authcache_debug_exclude in modules/
authcache_debug/ authcache_debug.api.php - Prevent that debug info is recorded on a given request.
- authcache_p13n_authcache_debug_exclude in modules/
authcache_p13n/ authcache_p13n.module - Implements hook_authcache_debug_exclude().
- authcache_p13n_authcache_request_exclude in modules/
authcache_p13n/ authcache_p13n.module - Implements hook_authcache_request_exclude().
- authcache_p13n_exit in modules/
authcache_p13n/ authcache_p13n.module - Implements hook_exit().
File
- modules/
authcache_p13n/ authcache_p13n.module, line 1227 - Provides methods for serving personalized content fragments.
Code
function authcache_p13n_is_authcache_p13n_request() {
return defined('AUTHCACHE_P13N_ROOT');
}