You are here

function authcache_debug_info_load in Authenticated User Page Caching (Authcache) 7.2

Load authcache info for the specified cache id.

File

modules/authcache_debug/authcache_debug.module, line 323
Debug widget for Authcache.

Code

function authcache_debug_info_load($cid) {
  $cache = cache_get($cid, 'cache_authcache_debug');
  return $cache ? $cache->data : FALSE;
}