function nofollowlist_menu in Nofollow List 5
Same name and namespace in other branches
- 6 nofollowlist.module \nofollowlist_menu()
- 7 nofollowlist.module \nofollowlist_menu()
Implementation of hook_menu()
File
- ./
nofollowlist.module, line 6
Code
function nofollowlist_menu($may_cache) {
$items[] = array(
'path' => 'admin/settings/nofollowlist',
'title' => t('Nofollowlist'),
'description' => t('Add sites to the nofollowlist and determine whether links to those sites are followable or not.'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'nofollowlist_settings_form',
),
'access' => user_access('administer nofollowlist'),
);
return $items;
}