You are here

function authcache_excluded in Authenticated User Page Caching (Authcache) 7.2

Return true if this page is excluded from page caching.

Related topics

3 calls to authcache_excluded()
authcache_exit in ./authcache.module
Implements hook_exit().
authcache_init in ./authcache.module
Implements hook_init().
authcache_page_is_cacheable in ./authcache.module
Return true if this page possibly will be cached later.
8 string references to 'authcache_excluded'
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 516
Authenticated User Page Caching (and anonymous users, too!)

Code

function authcache_excluded() {
  return _authcache_exclude();
}