1 url_alter_test.module url_alter_test_foo()

Menu callback.

File

core/modules/simpletest/tests/url_alter_test.module, line 23
Module to help test hook_url_inbound_alter() and hook_url_outbound_alter().

Code

function url_alter_test_foo() {
  print 'current_path=' . current_path() . ' request_path=' . request_path();
  exit;
}