diff options
author | Marcin Zelent <zelent.marcin@gmail.com> | 2018-03-16 17:53:32 +0100 |
---|---|---|
committer | Marcin Zelent <zelent.marcin@gmail.com> | 2018-03-16 17:53:32 +0100 |
commit | 1ab2b90b02705e206680b5428bf1fbaec6438132 (patch) | |
tree | 8ee964fdf84ff49c22ac6449a178da9d1e67eeb0 /src/AppBundle/Controller/LastWeekDataController.php | |
parent | ed01011dfb563e7d8ab13b6a0718eed7bf857880 (diff) |
Removed old files.
Diffstat (limited to 'src/AppBundle/Controller/LastWeekDataController.php')
-rw-r--r-- | src/AppBundle/Controller/LastWeekDataController.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/AppBundle/Controller/LastWeekDataController.php b/src/AppBundle/Controller/LastWeekDataController.php deleted file mode 100644 index 7b5d993..0000000 --- a/src/AppBundle/Controller/LastWeekDataController.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; - - -class LastWeekDataController extends Controller -{ - /** - * @Route("/LastWeekData", name="LastWeekData") - */ - - public function GetAllData() - { - // Get cURL resource - $curl = curl_init(); - curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/lastweek"); - curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - // Send the request & save response to $resp - $resp = curl_exec($curl); - // Close request to clear up some resources - curl_close($curl); - - $data = json_decode($resp, true); - - - usort($data, function($a,$b){ - return $a['TimeStamp'] - $b['TimeStamp']; - }); - - foreach($data as $index => $item) - { - $data[$index]['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $item['TimeStamp']); - } - - $parametersToTwig = array("data" => $data); - - return $this->render('default/LastWeekData.html.twig',$parametersToTwig); - } -}
\ No newline at end of file |