Show settings on less screens
[busui.git] / stopList.php
blob:a/stopList.php -> blob:b/stopList.php
<?php <?php
   
  /*
  * Copyright 2010,2011 Alexander Sadleir
   
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
   
  http://www.apache.org/licenses/LICENSE-2.0
   
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  */
include ('include/common.inc.php'); include ('include/common.inc.php');
$stops = Array(); $stops = Array();
function navbar() function stopCompare($stopName) {
{ return substr(trim(preg_replace("/\(Platform.*/", "", $stopName)),0,9);
echo ' }
  function stopGroupTitle($stopName,$stopdesc) {
  if (preg_match("/Dr |Cct |Cir |Av |St |Cr |Parade |Way |Bank /",$stopName)) {
  $descParts = explode("<br>",$stopdesc);
  return trim(str_replace("Street: ","",$descParts[0]));
  } else {
  return trim(preg_replace("/\(Platform.*/", "",$stopName));
  }
  }
  function navbar() {
  echo '
<div data-role="navbar"> <div data-role="navbar">
<ul> <ul>
<li><a href="stopList.php">Timing Points</a></li> <li><a href="stopList.php">Stops by Name</a></li>
<li><a href="stopList.php?bysuburbs=yes">By Suburb</a></li> <li><a href="stopList.php?bysuburbs=yes">By Suburb</a></li>
<li><a href="stopList.php?nearby=yes">Nearby Stops</a></li> <li><a href="stopList.php?nearby=yes">Nearby Stops</a></li>
<li><a href="stopList.php?allstops=yes">All Stops</a></li>  
</ul> </ul>
</div> </div>
'; ';
} }
   
// By suburb // By suburb
if (isset($bysuburbs)) { if (isset($bysuburbs)) {
include_header("Stops by Suburb", "stopList"); include_header("Stops by Suburb", "stopList");
navbar(); navbar();
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
if (!isset($firstLetter)) { if (!isset($firstLetter)) {
foreach (range('A', 'Z') as $letter) { foreach (range('A', 'Z') as $letter) {
echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;bysuburbs=yes\">$letter...</a></li>\n"; echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;bysuburbs=yes\">$letter...</a></li>\n";
} }
} } else {
else { foreach ($suburbs as $suburb) {
foreach ($suburbs as $suburb) { if (startsWith($suburb, $firstLetter)) {
if (startsWith($suburb, $firstLetter)) { echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>';
echo '<li><a href="stopList.php?suburb=' . urlencode($suburb) . '">' . $suburb . '</a></li>'; }
} }
} }
} echo '</ul>';
echo '</ul>'; } else {
} // Timing Points / All stops
else { if (isset($nearby)) {
// Timing Points / All stops $listType = 'nearby=yes';
if (isset($allstops)) { include_header("Nearby Stops", "stopList", true, true);
$listType = 'allstops=yes'; trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']);
$stops = getStops(); navbar();
include_header("All Stops", "stopList"); if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") {
navbar(); placeSettings();
} include_footer();
else if (isset($nearby)) { die();
$listType = 'nearby=yes'; }
include_header("Nearby Stops", "stopList", true, true); $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15);
trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']); echo '<span class="content-secondary">';
navbar(); $stopPositions[] = Array(
if (!isset($_SESSION['lat']) || !isset($_SESSION['lat']) || $_SESSION['lat'] == "" || $_SESSION['lon'] == "") { $_SESSION['lat'],
placeSettings(); $_SESSION['lon']
include_footer(); );
die(); foreach ($stops as $sub_stop) {
} $stopPositions[] = Array(
$stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15); $sub_stop["stop_lat"],
echo '<span class="content-secondary">'; $sub_stop["stop_lon"]
$stopPositions[] = Array( );
$_SESSION['lat'], }
$_SESSION['lon'] echo staticmap($stopPositions, true, true);
); placeSettings();
foreach ($stops as $sub_stop) { echo '</span><span class="content-primary">';
$stopPositions[] = Array( } else if (isset($suburb)) {
$sub_stop["stop_lat"], $stops = getStopsBySuburb($suburb);
$sub_stop["stop_lon"] include_header("Stops in " . ucwords($suburb), "stopList");
); navbar();
} trackEvent("Stop Lists", "Stops By Suburb", $suburb);
echo staticmap($stopPositions, 0, "iconb", true, true); } else {
placeSettings(); $listType = 'allstops=yes';
echo '</span><span class="content-primary">'; $stops = getStops($firstLetter);
} include_header("Stops by Name", "stopList");
else if (isset($suburb)) { navbar();
$stops = getStopsBySuburb($suburb); }
include_header("Stops in " . ucwords($suburb) , "stopList"); echo ' <ul data-role="listview" data-filter="true" data-inset="true" >';
navbar(); if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) {
trackEvent("Stop Lists", "Stops By Suburb", $suburb); foreach (range('A', 'Z') as $letter) {
} echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n";
else { }
$stops = getStops(true, $firstLetter); } else {
include_header("Timing Points / Major Stops", "stopList"); //var_dump($stops);
navbar(); $stopsGrouped = Array();
} foreach ($stops as $key => $stop) {
echo ' <ul data-role="listview" data-filter="true" data-inset="true" >'; if (stopCompare($stops[$key]["stop_name"])
if (!isset($firstLetter) && !isset($suburb) && !isset($nearby)) { != stopCompare($stops[$key + 1]["stop_name"])
foreach (range('A', 'Z') as $letter) { || $key + 1 >= sizeof($stops)) {
echo "<li><a href=\"stopList.php?firstLetter=$letter&amp;$listType\">$letter...</a></li>\n"; if (sizeof($stopsGrouped) > 0) {
} // print and empty grouped stops
} // subsequent duplicates
else { $stopsGrouped["stop_ids"][] = $stop['stop_id'];
//var_dump($stops); echo '<li>';
$stopsGrouped = Array(); echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">';
foreach ($stops as $key => $stop) { if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
if ((trim(preg_replace("/\(Platform.*/", "", $stops[$key]["stop_name"])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key + 1]["stop_name"]))) || $key + 1 >= sizeof($stops)) { echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
if (sizeof($stopsGrouped) > 0) { }
// print and empty grouped stops echo stopGroupTitle($stop['stop_name'],$stop['stop_desc']) . '<br><small>' . sizeof($stopsGrouped["stop_ids"]) . ' stops</small>';
// subsequent duplicates echo "</a></li>\n";
$stopsGrouped["stop_ids"][] = $stop['stop_id']; flush();
echo '<li>'; @ob_flush();
if (!startsWith($stopsGrouped['stop_codes'][0], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point: " class="ui-li-icon">'; $stopsGrouped = Array();
echo '<a href="stop.php?stopids=' . implode(",", $stopsGrouped['stop_ids']) . '">'; } else {
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { // just a normal stop
echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; echo '<li>';
} echo '<a href="stop.php?stopid=' . $stop['stop_id'] . '&amp;stopcode=' . $stop['stop_code'] . '">';
echo bracketsMeanNewLine(trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])) . '(' . sizeof($stopsGrouped["stop_ids"]) . ' stops)'); if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) {
echo "</a></li>\n"; echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>';
flush(); }
@ob_flush(); echo $stop['stop_name'];
$stopsGrouped = Array(); echo "</a></li>\n";
} flush();
else { @ob_flush();
// just a normal stop }
echo '<li>'; } else {
if (!startsWith($stop['stop_code'], "Wj")) echo '<img src="css/images/time.png" alt="Timing Point" class="ui-li-icon">'; // this is a duplicated line item
echo '<a href="stop.php?stopid=' . $stop['stop_id'] . (startsWith($stop['stop_code'], "Wj") ? '&amp;stopcode=' . $stop['stop_code'] : "") . '">'; if ($key - 1 <= 0 || stopCompare($stops[$key]['stop_name']) != stopCompare($stops[$key - 1]['stop_name'])) {
if (isset($_SESSION['lat']) && isset($_SESSION['lon'])) { // first duplicate
echo '<span class="ui-li-count">' . distance($stop['stop_lat'], $stop['stop_lon'], $_SESSION['lat'], $_SESSION['lon'], true) . 'm away</span>'; $stopsGrouped = Array(
} "name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])),
echo bracketsMeanNewLine($stop['stop_name']); "stop_ids" => Array(
echo "</a></li>\n"; $stop['stop_id']
flush(); ),
@ob_flush(); "stop_codes" => Array(
} $stop['stop_code']
} )
else { );
// this is a duplicated line item } else {
if ($key - 1 <= 0 || (trim(preg_replace("/\(Platform.*/", "", $stops[$key]['stop_name'])) != trim(preg_replace("/\(Platform.*/", "", $stops[$key - 1]['stop_name'])))) { // subsequent duplicates
// first duplicate $stopsGrouped["stop_ids"][] = $stop['stop_id'];
$stopsGrouped = Array( ;
"name" => trim(preg_replace("/\(Platform.*/", "", $stop['stop_name'])) , }
"stop_ids" => Array( }
$stop['stop_id'] }
) , }
"stop_codes" => Array( echo '</ul>';
$stop['stop_code'] if (isset($nearby))
) echo '</span>';
);  
}  
else {  
// subsequent duplicates  
$stopsGrouped["stop_ids"][] = $stop['stop_id'];;  
}  
}  
}  
}  
echo '</ul>';  
if (isset($nearby)) echo '</span>';  
} }
include_footer(); include_footer();
?> ?>