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