From 0f5659465584b5ef9fcbec26ea695fe3f1af9012 Mon Sep 17 00:00:00 2001 From: Shadify Date: Fri, 1 Dec 2017 08:51:24 +0100 Subject: Sorted all data --- src/AppBundle/Controller/AllDataController.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/AppBundle') diff --git a/src/AppBundle/Controller/AllDataController.php b/src/AppBundle/Controller/AllDataController.php index 18a30a1..78b4752 100644 --- a/src/AppBundle/Controller/AllDataController.php +++ b/src/AppBundle/Controller/AllDataController.php @@ -5,11 +5,13 @@ use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Component\HttpFoundation\Response; use Symfony\Bundle\FrameworkBundle\Controller\Controller; + class AllDataController extends Controller { /** * @Route("/AllDataReadings", name="AllData") */ + public function GetAllData() { // Get cURL resource @@ -23,6 +25,12 @@ class AllDataController extends Controller 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']); @@ -30,7 +38,6 @@ class AllDataController extends Controller $parametersToTwig = array("data" => $data); - return $this->render('default/AllDataPage.html.twig',$parametersToTwig); -- cgit v1.2.3 From 8c514c01aa4d620aea084beca3f4808270671f7e Mon Sep 17 00:00:00 2001 From: Shadify Date: Fri, 1 Dec 2017 09:59:15 +0100 Subject: wrote test case + cleaned up main page --- src/AppBundle/Controller/HomeController.php | 1 - src/AppBundle/Controller/NewDataController.php | 1 - 2 files changed, 2 deletions(-) (limited to 'src/AppBundle') diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php index d8234cf..0cfe2ab 100644 --- a/src/AppBundle/Controller/HomeController.php +++ b/src/AppBundle/Controller/HomeController.php @@ -51,7 +51,6 @@ class HomeController extends Controller $data['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $data['TimeStamp']); $arr = []; - print_r($data); $CO = is_nan($aqi->calculateAQI("Co", $data['Co'], $tableObj)) ? 0 : $aqi->calculateAQI("Co", $data['Co'], $tableObj); $SO = is_nan($aqi->calculateAQI("So", $data['So'], $tableObj)) ? 0 : $aqi->calculateAQI("So", $data['So'], $tableObj); $NO = is_nan($aqi->calculateAQI("No", $data['No'], $tableObj)) ? 0 : $aqi->calculateAQI("No", $data['No'], $tableObj); diff --git a/src/AppBundle/Controller/NewDataController.php b/src/AppBundle/Controller/NewDataController.php index f63a7fa..ecb1be9 100644 --- a/src/AppBundle/Controller/NewDataController.php +++ b/src/AppBundle/Controller/NewDataController.php @@ -38,7 +38,6 @@ class NewDataController extends Controller $response->headers->set('Content-Type', 'application/json'); return $response; - } } -- cgit v1.2.3