function system_test_get_destination in Drupal 7
Page callback to print out $_GET['destination'] for testing.
1 string reference to 'system_test_get_destination'
- system_test_menu in modules/
simpletest/ tests/ system_test.module - Implements hook_menu().
File
- 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;
}