function search_exclude_nid_permission in Search exclude nid 7
Implements hook_permission().
File
- ./
search_exclude_nid.module, line 37 - Excludes single node pages from search results
Code
function search_exclude_nid_permission() {
return array(
'administer search exclude nids' => array(
'title' => t('Administer search exclude nid'),
'description' => t('Access to the configuration page of the module and the autocomplete function to lookup the node id to a node title.'),
'restrict access' => TRUE,
),
);
}