You are here

function authcache_builtin_authcache_debug_info in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_debug_info().

File

modules/authcache_builtin/authcache_builtin.module, line 54
Authcache storage backend for Drupal core cache system.

Code

function authcache_builtin_authcache_debug_info() {
  $info['Cache Class'] = get_class(_cache_get_object('cache_page'));
  $info['Cache CID'] = authcache_builtin_cid();
  return $info;
}