You are here

function custom_search_taxonomy_help in Custom Search 7

Same name and namespace in other branches
  1. 6 modules/custom_search_taxonomy/custom_search_taxonomy.admin.inc \custom_search_taxonomy_help()

Implements hook_help().

File

modules/custom_search_taxonomy/custom_search_taxonomy.admin.inc, line 11
Admin settings for custom search taxonomy

Code

function custom_search_taxonomy_help($path, $arg) {
  switch ($path) {
    case 'admin/config/search/custom_search/taxonomy':
      $output = t('Select the vocabularies to present as search options in the search block. If none is selected, no selector will be displayed.');
      break;
  }
  return $output;
}