function system_test_page_shutdown_functions in Drupal 7
A simple page callback which adds a register shutdown function.
1 string reference to 'system_test_page_shutdown_functions'
- system_test_menu in modules/
simpletest/ tests/ system_test.module - Implements hook_menu().
File
- modules/
simpletest/ tests/ system_test.module, line 390
Code
function system_test_page_shutdown_functions($arg1, $arg2) {
drupal_register_shutdown_function('_system_test_first_shutdown_function', $arg1, $arg2);
}