function common_test_destination in Drupal 7
Print destination query parameter.
1 string reference to 'common_test_destination'
- common_test_menu in modules/
simpletest/ tests/ common_test.module - Implements hook_menu().
File
- modules/
simpletest/ tests/ common_test.module, line 122 - Helper module for the Common tests.
Code
function common_test_destination() {
$destination = drupal_get_destination();
print "The destination: " . check_plain($destination['destination']);
}