function form_test_load_include_submit

7.x form_test.file.inc form_test_load_include_submit($form, $form_state)

Submit callback for the form API file inclusion test forms.

2 string references to 'form_test_load_include_submit'
form_test_load_include_custom in drupal-7.x/modules/simpletest/tests/form_test.module
Menu callback for testing custom form includes.
form_test_load_include_menu in drupal-7.x/modules/simpletest/tests/form_test.file.inc
Form constructor for testing FAPI file inclusion of the file specified in hook_menu().

File

drupal-7.x/modules/simpletest/tests/form_test.file.inc, line 35
An include file to test loading it with the form API.

Code

function form_test_load_include_submit($form, $form_state) {
  drupal_set_message('Submit callback called.');
}