You are here

function authcache_test_page_build in Authenticated User Page Caching (Authcache) 7.2

Implements hook_page_build().

File

tests/authcache_test.module, line 311
Mock module to aid in testing authcache.module.

Code

function authcache_test_page_build(&$page) {
  if (variable_get('authcache_test_status_message', FALSE)) {

    // @ignore i18n_8
    drupal_set_message('status message during page build');
  }
}