common_test_destination

7 common_test.module common_test_destination()
8 common_test.module common_test_destination()

Print destination query parameter.

1 string reference to 'common_test_destination'

File

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

Code

function common_test_destination() {
  $destination = drupal_get_destination();
  print "The destination: " . check_plain($destination['destination']);
}
Login or register to post comments