Files
fdn2/private/lib/task/UpdateMeteoCacheTask.php
T
2016-03-17 20:43:51 +01:00

26 lines
562 B
PHP

<?php
/*
Author: Riccardo Di Dato
Creation Date: 17/mar/2016
*/
class UpdateMeteoCacheTask extends Task {
public static function getName(){
return "updateMeteoCache";
}
public static function getLabel(){
return "Aggiorna la cache per il meteo";
}
public static function execute(){
$config = GlobalVariables::get("config");
$cont = file_get_contents("http://api.openweathermap.org/data/2.5/forecast?q=Naples,IT&appid=b1b15e88fa797225412429c1c50c122a&units=metric&lang=it");
file_put_contents($config->files->meteoCache, $cont);
}
}
?>