function authcache_test_exit in Authenticated User Page Caching (Authcache) 7.2
Implements hook_exit().
File
- tests/
authcache_test.module, line 321 - Mock module to aid in testing authcache.module.
Code
function authcache_test_exit() {
if (variable_get('authcache_test_status_message_exit', FALSE)) {
// @ignore i18n_8
drupal_set_message('status message during exit hook');
}
}