You are here

function theme_getlocations_blocks_country_form in Get Locations 7.2

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

Parameters

array $variables:

Return value

Returns $output

File

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

Code

function theme_getlocations_blocks_country_form($variables) {
  $form = $variables['form'];
  $output = '';
  $form['getlocations_blocks_country']['#prefix'] = '<div id="getlocations_blocks_country">';
  $form['getlocations_blocks_country_form_submit']['#suffix'] = '</div>';
  $output .= drupal_render_children($form);
  return $output;
}