You are here

function custom_search_blocks_help in Custom Search 7

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

Implements 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/config/search/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;
}