You are here

function theme_getlocations_plugin_style_streetview_options_form in Get Locations 7.2

Same name and namespace in other branches
  1. 7 getlocations.module \theme_getlocations_plugin_style_streetview_options_form()

Returns HTML of the getlocations plugin_style_streetview_options form.

Parameters

array $variables: An associative array containing:

  • form: The form array.

Return value

string The rendered form

File

./getlocations.module, line 7513
getlocations.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function theme_getlocations_plugin_style_streetview_options_form($variables) {
  $form = $variables['form'];
  $output = drupal_render_children($form);
  return $output;
}