You are here

function purl_test_menu in Persistent URL 6

Same name and namespace in other branches
  1. 7 tests/purl_test.module \purl_test_menu()

Implementation of hook_menu().

File

tests/purl_test.module, line 6

Code

function purl_test_menu() {
  return array(
    'admin/build/testing/purl' => array(
      'page callback' => 'purl_test_page',
      'page arguments' => array(),
      'access callback' => 'user_access',
      'access arguments' => array(
        'administer site configuration',
      ),
      'type' => MENU_CALLBACK,
    ),
  );
}