function resource_hints_menu in Resource Hints 7.2
Same name and namespace in other branches
- 7 resource_hints.module \resource_hints_menu()
Implements hook_menu().
File
- ./
resource_hints.module, line 16 - Modules hooks for the resource hints module.
Code
function resource_hints_menu() {
$items['admin/config/development/resources-hints'] = array(
'title' => 'Resource Hints',
'description' => 'Configure settings for resources hints.',
'type' => MENU_NORMAL_ITEM,
'access arguments' => array(
'administer resource hints',
),
'page callback' => 'drupal_get_form',
'page arguments' => array(
'resource_hints_dns_prefetch_admin',
),
'file' => 'resource_hints.admin.inc',
);
return $items;
}