You are here

function authcache_page_is_cacheable in Authenticated User Page Caching (Authcache) 7.2

Return true if this page possibly will be cached later.

Related topics

33 calls to authcache_page_is_cacheable()
authcache_block_page_alter in modules/authcache_block/authcache_block.module
Implements hook_page_alter().
authcache_comment_comment_view_alter in modules/authcache_comment/authcache_comment.module
Implements hook_comment_view_alter().
authcache_comment_form_comment_form_alter in modules/authcache_comment/authcache_comment.module
Implements hook_form_FORM_ID_alter().
authcache_comment_node_view_alter in modules/authcache_comment/authcache_comment.module
Implements hook_comment_view_alter().
authcache_comment_preprocess_comment in modules/authcache_comment/authcache_comment.module
Process comment template variables.

... See full list

File

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

Code

function authcache_page_is_cacheable() {
  return !(authcache_excluded() || authcache_canceled());
}