function common_test_destination

Print destination query parameter.

1 string reference to 'common_test_destination'
common_test_menu in drupal-7.x/modules/simpletest/tests/common_test.module
Implements hook_menu().

Archivo

drupal-7.x/modules/simpletest/tests/common_test.module, line 98
Helper module for the Common tests.

Código

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