function weather_location_settings_form_country_callback in Weather 7
Same name and namespace in other branches
- 7.3 weather.forms.inc \weather_location_settings_form_country_callback()
- 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 settings form for a weather location.
File
- ./
weather.forms.inc, line 496 - Provide forms for configuration of weather displays.
Code
function weather_location_settings_form_country_callback($form, $form_state) {
$ret['place'] = $form['place'];
$ret['real_name'] = $form['real_name'];
return $ret;
}