You are here

function theme_getlocations_blocks_city_form in Get Locations 7

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

Parameters

array $variables:

Return value

Returns $output

File

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

Code

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