function openid_test_redirected_method

7.x openid_test.module openid_test_redirected_method($method1, $method2)

Menu callback; respond with appropriate callback.

1 string reference to 'openid_test_redirected_method'
openid_test_menu in drupal-7.x/modules/openid/tests/openid_test.module
Implements hook_menu().

File

drupal-7.x/modules/openid/tests/openid_test.module, line 250
Dummy OpenID Provider used with SimpleTest.

Code

function openid_test_redirected_method($method1, $method2) {
  return call_user_func('openid_test_' . $method1 . '_' . $method2);
}