authcache_builtin_expire_v2.module in Authenticated User Page Caching (Authcache) 7.2
Integration of Cache Expiration module version 7.x-2.x and Authcache Builtin.
File
modules/authcache_builtin_expire_v2/authcache_builtin_expire_v2.moduleView source
<?php
/**
* @file
* Integration of Cache Expiration module version 7.x-2.x and Authcache Builtin.
*/
/**
* Implements hook_expire_cache().
*
* Expire cache support for the builtin cache handler.
*/
function authcache_builtin_expire_v2_expire_cache($urls, $wildcards, $object_type, $object) {
$cids = array();
$wildcard_cids = array();
foreach (authcache_enum_keys() as $key) {
foreach ($urls as $path => $url) {
$parts = parse_url($url);
$cid = $key . $parts['path'];
if (isset($parts['query'])) {
$cid .= '?' . $parts['query'];
}
if (isset($parts['fragment'])) {
$cid .= '#' . $parts['fragment'];
}
if (empty($wildcards[$path])) {
$cids[] = $cid;
}
else {
$wildcard_cids[] = $cid;
}
}
}
if (!empty($cids)) {
cache_clear_all($cids, 'cache_page');
}
foreach ($wildcard_cids as $cid) {
cache_clear_all($cid, 'cache_page', TRUE);
}
}
Functions
Name | Description |
---|---|
authcache_builtin_expire_v2_expire_cache | Implements hook_expire_cache(). |