You are here

function authcache_canceled in Authenticated User Page Caching (Authcache) 7.2

Return true if the caching was canceled during page-build.

Related topics

2 calls to authcache_canceled()
AuthcacheP13nTestMarkup::testFallbackCancel in modules/authcache_p13n/tests/authcache_p13n.markup.test
Cover authcache_p13n_authcache_p13n_client_fallback_alter().
authcache_page_is_cacheable in ./authcache.module
Return true if this page possibly will be cached later.
8 string references to 'authcache_canceled'
AuthcacheCommentTest::testCommentAttributionWithFormCache in modules/authcache_comment/authcache_comment.test
Test that comments get properly attributed when the form cache is in use.
AuthcacheCommerceTest::testCommerceAddToCartWithFormCache in modules/authcache_commerce/authcache_commerce.test
Test that products are added to the proper cart.
AuthcacheFormTestCacheLifespan::testCachedFormBuildID in modules/authcache_form/tests/authcache_form.test
Test functionality for form-build-id.
AuthcacheFormTestTokenDeferral::testCachedFormBuildID in modules/authcache_form/tests/authcache_form.test
Test functionality for form-build-id.
AuthcacheFormTestTokenDeferral::testTokenDefer in modules/authcache_form/tests/authcache_form.test
Test token deferral functionality.

... See full list

File

./authcache.module, line 537
Authenticated User Page Caching (and anonymous users, too!)

Code

function authcache_canceled() {
  return authcache_cancel();
}