function purl_test_menu in Persistent URL 7
Same name and namespace in other branches
- 6 tests/purl_test.module \purl_test_menu()
Implements hook_menu().
File
- tests/
purl_test.module, line 6
Code
function purl_test_menu() {
return array(
'admin/config/development/testing/purl' => array(
'page callback' => 'purl_test_page',
'page arguments' => array(),
'access callback' => 'user_access',
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_CALLBACK,
),
);
}