function system_test_get_destination

Page callback to print out $_GET['destination'] for testing.

1 string reference to 'system_test_get_destination'
system_test_menu in drupal/modules/simpletest/tests/system_test.module
Implements hook_menu().

File

drupal/modules/simpletest/tests/system_test.module, line 479

Code

function system_test_get_destination() {
  if (isset($_GET['destination'])) {
    print $_GET['destination'];
  }

  // No need to render the whole page, we are just interested in this bit of
  // information.
  exit;
}