aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadify <boomkin1234@hotmail.com>2017-12-01 08:51:24 +0100
committerShadify <boomkin1234@hotmail.com>2017-12-01 08:51:24 +0100
commit0f5659465584b5ef9fcbec26ea695fe3f1af9012 (patch)
tree55daf5da3719e115050bf2f43f4590f07aeb71cf /src/AppBundle/Controller
parent491eb42cd125b76f96d4f906c3822202d55395a1 (diff)
Sorted all data
Diffstat (limited to 'src/AppBundle/Controller')
-rw-r--r--src/AppBundle/Controller/AllDataController.php9
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);