system_test_authorize_init_page

7 system_test.module system_test_authorize_init_page($page_title)
8 system_test.module system_test_authorize_init_page($page_title)

Page callback to initialize authorize.php during testing.

See also

system_authorized_init().

1 string reference to 'system_test_authorize_init_page'

File

modules/simpletest/tests/system_test.module, line 403

Code

function system_test_authorize_init_page($page_title) {
  $authorize_url = $GLOBALS['base_url'] . '/authorize.php';
  system_authorized_init('system_test_authorize_run', drupal_get_path('module', 'system_test') . '/system_test.module', array(), $page_title);
  drupal_goto($authorize_url);
}
Login or register to post comments