function theme_location_search_form in Location 5
File
- ./
location.theme, line 3
Code
function theme_location_search_form(&$form) {
//drupal_set_message("called theme_location_search_form()");
$row = array();
$row[] = array(
'data' => drupal_render($form['proximity']),
);
$row[] = array(
'data' => drupal_render($form['location']),
);
$output = theme('table', NULL, array(
$row,
), array(
'class' => 'location-search-form-table',
));
$output .= drupal_render($form);
return $output;
}