diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2017-12-01 11:06:41 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2017-12-01 11:06:41 +0100 |
commit | 8b8639740c08633728f0d9dd778ac022e43f7e1b (patch) | |
tree | d8f087a875416d7feb05f53ec459aacdfd12c47d /src/AppBundle/Controller/AllDataController.php | |
parent | 7d09b3a6201a175128421d117d4c63495813fa05 (diff) | |
parent | 8c514c01aa4d620aea084beca3f4808270671f7e (diff) |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/AppBundle/Controller/AllDataController.php')
-rw-r--r-- | src/AppBundle/Controller/AllDataController.php | 9 |
1 files changed, 8 insertions, 1 deletions
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); |