function nofollowlist_menu in Nofollow List 7
Same name and namespace in other branches
- 5 nofollowlist.module \nofollowlist_menu()
- 6 nofollowlist.module \nofollowlist_menu()
Implements hook_menu().
File
- ./
nofollowlist.module, line 11 - Provides a nofollowlist filter.
Code
function nofollowlist_menu() {
$items = array(
'admin/config/search/nofollowlist' => array(
'title' => 'Nofollow List settings',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'nofollowlist_admin_settings_form',
),
'access arguments' => array(
'administer nofollowlist',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'nofollowlist.admin.inc',
),
);
return $items;
}