You are here

function authcache_test_form in Authenticated User Page Caching (Authcache) 7.2

Form API callback for test form.

1 string reference to 'authcache_test_form'
authcache_test_menu in tests/authcache_test.module
Implements hook_menu().

File

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

Code

function authcache_test_form($form, &$form_state) {
  $form['authcache_test_form_comment'] = array(
    '#type' => 'textarea',
  );
  return system_settings_form($form, $form_state);
}