function system_test_page_shutdown_functions

7.x system_test.module system_test_page_shutdown_functions($arg1, $arg2)

A simple page callback which adds a register shutdown function.

1 string reference to 'system_test_page_shutdown_functions'
system_test_menu in drupal-7.x/modules/simpletest/tests/system_test.module
Implements hook_menu().

File

drupal-7.x/modules/simpletest/tests/system_test.module, line 337

Code

function system_test_page_shutdown_functions($arg1, $arg2) {
  drupal_register_shutdown_function('_system_test_first_shutdown_function', $arg1, $arg2);
}