function custom_search_blocks_help in Custom Search 6
Same name and namespace in other branches
- 7 modules/custom_search_blocks/custom_search_blocks.admin.inc \custom_search_blocks_help()
Implementation of hook_help().
File
- modules/
custom_search_blocks/ custom_search_blocks.admin.inc, line 11 - Admin settings for custom search
Code
function custom_search_blocks_help($path, $arg) {
switch ($path) {
case 'admin/settings/custom_search/blocks':
$output = t('If you want custom search blocks, enable them here. Then go to the <a href="@link">block page</a> to place them in a region.', array(
'@link' => url('admin/build/block'),
));
break;
}
return $output;
}