function url_alter_test_foo

Menu callback.

1 string reference to 'url_alter_test_foo'
url_alter_test_menu in drupal/core/modules/system/tests/modules/url_alter_test/url_alter_test.module
Implements hook_menu().

File

drupal/core/modules/system/tests/modules/url_alter_test/url_alter_test.module, line 24
Module to help test altering the inbound and outbound path.

Code

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