function getlocations_blocks_theme in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_blocks/getlocations_blocks.module \getlocations_blocks_theme()
Implements hook_theme().
This lets us tell Drupal about our theme functions and their arguments.
File
- modules/
getlocations_blocks/ getlocations_blocks.module, line 861 - getlocations_blocks.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_blocks_theme() {
return array(
'getlocations_blocks_city_form' => array(
'render element' => 'form',
),
'getlocations_blocks_province_form' => array(
'render element' => 'form',
),
'getlocations_blocks_postalcode_form' => array(
'render element' => 'form',
),
'getlocations_blocks_country_form' => array(
'render element' => 'form',
),
);
}