function getlocations_blocks_block_info in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_blocks/getlocations_blocks.module \getlocations_blocks_block_info()
Implements hook_block_info().
This hook declares what blocks are provided by the module.
File
- modules/
getlocations_blocks/ getlocations_blocks.module, line 49 - getlocations_blocks.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_blocks_block_info() {
$blocks = array();
$blocks['getlocations_blocks_city'] = array(
'info' => t("Getlocations search by city."),
);
$blocks['getlocations_blocks_province'] = array(
'info' => t("Getlocations search by province."),
);
$blocks['getlocations_blocks_postalcode'] = array(
'info' => t("Getlocations search by postal code."),
);
$blocks['getlocations_blocks_country'] = array(
'info' => t("Getlocations search by country."),
);
return $blocks;
}