You are here

function search_config_perm in Search configuration 5

Same name and namespace in other branches
  1. 6 search_config.module \search_config_perm()

Implementation of hook_perm()

Allow the displaying of form fields per role.

File

./search_config.module, line 17
Used to configure the advanced search form and other search behaviour.

Code

function search_config_perm() {
  return array(
    'search by node type',
    'search by category',
    'use keyword search',
  );
}