function _weather_es_data_save in Weather_es 7
Same name and namespace in other branches
- 6.3 weather_es.module \_weather_es_data_save()
Save the AEMET data for a city
@author jmsirvent
2 calls to _weather_es_data_save()
- weather_es_form_submit in ./
weather_es.module - @author jmsirvent
- _weather_es_contents in ./
weather_es.module - Weather_es contents
File
- ./
weather_es.module, line 808
Code
function _weather_es_data_save($cit_cod, $cit_nam, $aemet) {
db_insert('weather_es_data')
->fields(array(
'cit_cod',
'cit_nam',
'nex_upd',
'dat_dat',
))
->values(array(
'cit_cod' => $cit_cod,
'cit_nam' => $cit_nam,
'nex_upd' => time() + 4 * 3600,
'dat_dat' => $aemet,
))
->execute();
}