You are here

function custom_search_taxonomy_help in Custom Search 6

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

Implementation of 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/settings/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;
}