You are here

function authcache_form_test_page in Authenticated User Page Caching (Authcache) 7.2

Menu callback: Show multiple forms on one page.

1 string reference to 'authcache_form_test_page'
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 70
Stub module for Authcache Form test.

Code

function authcache_form_test_page() {
  $build = array();
  foreach (func_get_args() as $form_id) {
    $build[$form_id] = drupal_get_form($form_id);
  }
  return $build;
}