You are here

function getlocations_search_block_info in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_search/getlocations_search.module \getlocations_search_block_info()

Implements hook_block_info().

This hook declares what blocks are provided by the module.

File

modules/getlocations_search/getlocations_search.module, line 1889
getlocations_search.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_search_block_info() {
  $blocks = array();
  $blocks['getlocations_search_block'] = array(
    'info' => t("Getlocations search."),
  );
  return $blocks;
}