Add weekend Network 10
[bus.git] / busui / stopList.php
blob:a/busui/stopList.php -> blob:b/busui/stopList.php
<?php <?php
include('common.inc.php'); include('common.inc.php');
include_header("Stops"); include_header("Stops");
echo ' <ul data-role="listview" data-filter="true">'; echo ' <ul data-role="listview" data-filter="true">';
$url = $APIurl."/json/stops"; $url = $APIurl."/json/timingpoints";
  if ($_REQUEST['allstops']) $url = $APIurl."/json/stops";
if ($_REQUEST['lat'] && $_REQUEST['lon']) $url = $APIurl."/json/neareststops?lat={$_REQUEST['lat']}&lon={$_REQUEST['lon']}&limit=15"; if ($_REQUEST['lat'] && $_REQUEST['lon']) $url = $APIurl."/json/neareststops?lat={$_REQUEST['lat']}&lon={$_REQUEST['lon']}&limit=15";
$contents = json_decode(getPage($url)); $contents = json_decode(getPage($url));
foreach ($contents as $key => $row) { foreach ($contents as $key => $row) {
$stopName[$key] = $row[1]; $stopName[$key] = $row[1];
} }
   
// Sort the data with volume descending, edition ascending // Sort the data with volume descending, edition ascending
// Add $data as the last parameter, to sort by the common key // Add $data as the last parameter, to sort by the common key
array_multisort($stopName, SORT_ASC, $contents); array_multisort($stopName, SORT_ASC, $contents);
   
foreach ($contents as $row) foreach ($contents as $row)
{ {
   
echo '<li><a href="stop.php?stopid='.$row[0].'">'.$row[1].'</a></li>'; echo '<li><a href="stop.php?stopid='.$row[0].'">'.$row[1].'</a></li>';
} }
echo '</ul>'; echo '</ul>';
/* echo'
<div data-role="footer" data-id="foo1" data-position="fixed"> <div data-role="footer" data-id="foo1" data-position="fixed">
<div data-role="navbar"> <div data-role="navbar">
<ul> <ul>
<li><a href="footer-persist-a.html" class="ui-btn-active">Friends</a></li> <li><a href="stopList.php" class="ui-btn-active">Timing Points</a></li>
<li><a href="footer-persist-b.html">Albums</a></li> <li><a href="stopList.php?allstops=yes">All Stops</a></li>
<li><a href="footer-persist-c.html">Emails</a></li>  
</ul> </ul>
</div><!-- /navbar --> ';
*/  
include_footer(); include_footer();
?> ?>