function common_test_destination

Print destination query parameter.

1 string reference to 'common_test_destination'

File

drupal/modules/simpletest/tests/common_test.module, line 107
Helper module for the Common tests.

Code

function common_test_destination() {
  $destination = drupal_get_destination();
  print "The destination: " . check_plain($destination['destination']);
}