function custom_search_i18n_help in Custom Search 7
Implements hook_help().
File
- modules/
custom_search_i18n/ custom_search_i18n.admin.inc, line 11 - Admin settings for custom search taxonomy
Code
function custom_search_i18n_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;
}