You are here

function custom_search_permission in Custom Search 7

Implements hook_permission().

File

./custom_search.module, line 76
Bring customizations to the default search box

Code

function custom_search_permission() {
  return array(
    'administer custom search' => array(
      'title' => t('Administer custom search'),
      'description' => t('Allow users to administer custom search settings'),
    ),
    'use custom search' => array(
      'title' => t('Use custom search'),
      'description' => t('Allow users to use custom search'),
    ),
  );
}