You are here

function weather_location_settings_form_country_callback in Weather 7.3

Same name and namespace in other branches
  1. 7 weather.forms.inc \weather_location_settings_form_country_callback()
  2. 7.2 weather.forms.inc \weather_location_settings_form_country_callback()

AJAX callback for location settings form.

1 string reference to 'weather_location_settings_form_country_callback'
weather_location_settings_form in ./weather.forms.inc
Create a form for a weather place.

File

./weather.forms.inc, line 655
Provide forms for configuration of weather displays.

Code

function weather_location_settings_form_country_callback($form, $form_state) {
  $ret['place'] = $form['place'];
  $ret['displayed_name'] = $form['displayed_name'];
  return $ret;
}