1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | <?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'); auth(); include_header("Service Alert Editor", "serviceAlertEditor"); /** * Currently support: * network inform * stop remove: route patch, stop remove * - stop search * street inform: route inform, stop inform * - street search */ if (isset($_REQUEST['saveedit'])) { if ($_REQUEST['saveedit'] != "") { updateServiceAlert($_REQUEST['saveedit'], $_REQUEST); } else { addServiceAlert($_REQUEST); } echo "Saved " . $_REQUEST['saveedit']; die(); } if (isset($_REQUEST['delete'])) { $deleteParts = explode(";", $_REQUEST['delete']); deleteInformedAlert($deleteParts[0], $deleteParts[1], $deleteParts[2]); echo "Deleted network inform for {$deleteParts[0]} ({$deleteParts[1]},{$deleteParts[2]})<br>\n"; die(); } if (isset($_REQUEST['networkinform'])) { addInformedAlert($_REQUEST['networkinform'], "agency", "0", "inform"); echo "Added network inform for" . $_REQUEST['networkinform']; die(); } if (isset($_REQUEST['stopsearch'])) { addInformedAlert($_REQUEST['stopsearch'], "stop", $_REQUEST['stopid'], "remove"); echo "Added stop remove for" . $_REQUEST['stopsearch'] . ", stop" . $_REQUEST['stopid'] . "<br>\n"; foreach ($service_periods as $sp) { echo "Remove from $sp routes<br>\n"; foreach (getStopRoutes($_REQUEST['stopid'], $sp) as $route) { addInformedAlert($_REQUEST['stopsearch'], "route", $route['route_id'], "patch"); echo "Added route patch for" . $_REQUEST['stopsearch'] . ", route" . $route['route_id'] . "<br>\n"; } } die(); } if (isset($_REQUEST['streetsearch'])) { echo "Informing stops of street<br>\n"; foreach (getStopsByName($_REQUEST['street']) as $stop) { addInformedAlert($_REQUEST['streetsearch'], "stop", $stop['stop_id'], "inform"); echo "Added stop inform for" . $_REQUEST['streetsearch'] . ", stop" . $stop['stop_id'] . " ". $stop['stop_name']."<br>\n"; foreach ($service_periods as $sp) { echo "Informing $sp routes<br>\n"; foreach (getStopRoutes($stop['stop_id'], $sp) as $route) { addInformedAlert($_REQUEST['streetsearch'], "route", $route['route_id'], "inform"); echo "Added route inform for stop" . $_REQUEST['streetsearch'] . ", route" . $route['route_id'] . "<br>\n"; } } } die(); } ?> Active and Future Alerts: <table> <?php foreach (getFutureAlerts() as $alert) { echo "<tr><td>" . date("c", $alert['start']) . "<br>to<br>" . date("c", $alert['end']) . "</td><td><b>" .$alert['header']."</b><br>". $alert['description'] . '</td><td><a href="?edit=' . $alert['id'] . '">edit</a></td></tr>'; } ?> </table> <?php $alert = getServiceAlert((isset($_REQUEST['edit'])?$_REQUEST['edit']:"")); ?> <form action="<?php echo basename(__FILE__); ?>" method="get"> <div data-role="fieldcontain"> <label for="startdate"> Start Date</label> <input type="text" name="startdate" id="startdate" value="<?php if ($alert['start']) { echo date("c", $alert['start']); } else { echo date("c", strtotime("0:00")); } ?>" /> </div> <div data-role="fieldcontain"> <label for="enddate"> End Date </label> <input type="text" name="enddate" id="enddate" value="<?php if ($alert['end']) { echo date("c", $alert['end']); } else { echo date("c", strtotime("23:59")); } ?>" /> </div> <div data-role="fieldcontain"> <label for="header">Header</label> <input type="text" name="header" id="header" value="<?php echo $alert['header']; ?>" /> </div> <div data-role="fieldcontain"> <label for="description">Description</label> <textarea name="description"><?php echo $alert['description']; ?></textarea> </div> <div data-role="fieldcontain"> <label for="url">URL</label> <input type="text" name="url" id="url" value="<?php echo $alert['url']; ?>" /> </div> <div data-role="fieldcontain"> <label for="cause"> Cause: </label> <select name="cause" id="cause"> <?php foreach ($serviceAlertCause as $key => $value) { echo "<option value=\"$key\"" . ($key === $alert['cause'] ? " SELECTED" : "") . '>' . $value . '</option>'; } ?> </select></div> <div data-role="fieldcontain"> <label for="effect"> Effect: </label> <select name="effect" id="effect"> <?php foreach ($serviceAlertEffect as $key => $value) { echo "<option value=\"$key\"" . ($key |