You are here

function authcache_form_test_cached_form in Authenticated User Page Caching (Authcache) 7.2

Menu callback: Build a cached form.

1 string reference to 'authcache_form_test_cached_form'
authcache_form_test_menu in modules/authcache_form/tests/authcache_form_test.module
Implements hook_menu().

File

modules/authcache_form/tests/authcache_form_test.module, line 61
Stub module for Authcache Form test.

Code

function authcache_form_test_cached_form($form, &$form_state) {
  $result = HookStub::record(__FUNCTION__, func_get_args()) + $form;
  $form_state['cache'] = TRUE;
  return $result;
}