@@ -4,11 +4,19 @@ discard block |
||
| 4 | 4 | if (isset($_SESSION['error'])) { |
| 5 | 5 | header('Content-Encoding: none;'); |
| 6 | 6 | echo 'Error : '.$_SESSION['error'].' - Resetting install... You need to fix the problem and run install again.'; |
| 7 | - if (isset($_SESSION['error'])) unset($_SESSION['error']); |
|
| 8 | - if (isset($_SESSION['errorlst'])) unset($_SESSION['errorlst']); |
|
| 9 | - if (isset($_SESSION['next'])) unset($_SESSION['next']); |
|
| 10 | - if (isset($_SESSION['install'])) unset($_SESSION['install']); |
|
| 11 | -} |
|
| 7 | + if (isset($_SESSION['error'])) { |
|
| 8 | + unset($_SESSION['error']); |
|
| 9 | + } |
|
| 10 | + if (isset($_SESSION['errorlst'])) { |
|
| 11 | + unset($_SESSION['errorlst']); |
|
| 12 | + } |
|
| 13 | + if (isset($_SESSION['next'])) { |
|
| 14 | + unset($_SESSION['next']); |
|
| 15 | + } |
|
| 16 | + if (isset($_SESSION['install'])) { |
|
| 17 | + unset($_SESSION['install']); |
|
| 18 | + } |
|
| 19 | + } |
|
| 12 | 20 | /* |
| 13 | 21 | if (isset($_SESSION['errorlst'])) { |
| 14 | 22 | header('Content-Encoding: none;'); |
@@ -156,45 +164,72 @@ discard block |
||
| 156 | 164 | </div> |
| 157 | 165 | <p> |
| 158 | 166 | <label for="dbhost">Database hostname</label> |
| 159 | - <input type="text" name="dbhost" id="dbhost" value="<?php if (isset($globalDBhost)) print $globalDBhost; ?>" /> |
|
| 167 | + <input type="text" name="dbhost" id="dbhost" value="<?php if (isset($globalDBhost)) { |
|
| 168 | + print $globalDBhost; |
|
| 169 | +} |
|
| 170 | +?>" /> |
|
| 160 | 171 | </p> |
| 161 | 172 | <p> |
| 162 | 173 | <label for="dbport">Database port</label> |
| 163 | - <input type="text" name="dbport" id="dbport" value="<?php if (isset($globalDBport)) print $globalDBport; ?>" /> |
|
| 174 | + <input type="text" name="dbport" id="dbport" value="<?php if (isset($globalDBport)) { |
|
| 175 | + print $globalDBport; |
|
| 176 | +} |
|
| 177 | +?>" /> |
|
| 164 | 178 | <p class="help-block">Default is 3306 for MariaDB/MySQL, 5432 for PostgreSQL</p> |
| 165 | 179 | </p> |
| 166 | 180 | <p> |
| 167 | 181 | <label for="dbname">Database name</label> |
| 168 | - <input type="text" name="dbname" id="dbname" value="<?php if (isset($globalDBname)) print $globalDBname; ?>" /> |
|
| 182 | + <input type="text" name="dbname" id="dbname" value="<?php if (isset($globalDBname)) { |
|
| 183 | + print $globalDBname; |
|
| 184 | +} |
|
| 185 | +?>" /> |
|
| 169 | 186 | </p> |
| 170 | 187 | <p> |
| 171 | 188 | <label for="dbuser">Database user</label> |
| 172 | - <input type="text" name="dbuser" id="dbuser" value="<?php if (isset($globalDBuser)) print $globalDBuser; ?>" /> |
|
| 189 | + <input type="text" name="dbuser" id="dbuser" value="<?php if (isset($globalDBuser)) { |
|
| 190 | + print $globalDBuser; |
|
| 191 | +} |
|
| 192 | +?>" /> |
|
| 173 | 193 | </p> |
| 174 | 194 | <p> |
| 175 | 195 | <label for="dbuserpass">Database user password</label> |
| 176 | - <input type="password" name="dbuserpass" id="dbuserpass" value="<?php if (isset($globalDBpass)) print $globalDBpass; ?>" /> |
|
| 196 | + <input type="password" name="dbuserpass" id="dbuserpass" value="<?php if (isset($globalDBpass)) { |
|
| 197 | + print $globalDBpass; |
|
| 198 | +} |
|
| 199 | +?>" /> |
|
| 177 | 200 | </p> |
| 178 | 201 | </fieldset> |
| 179 | 202 | <fieldset id="site"> |
| 180 | 203 | <legend>Site configuration</legend> |
| 181 | 204 | <p> |
| 182 | 205 | <label for="sitename">Site name</label> |
| 183 | - <input type="text" name="sitename" id="sitename" value="<?php if (isset($globalName)) print $globalName; ?>" /> |
|
| 206 | + <input type="text" name="sitename" id="sitename" value="<?php if (isset($globalName)) { |
|
| 207 | + print $globalName; |
|
| 208 | +} |
|
| 209 | +?>" /> |
|
| 184 | 210 | </p> |
| 185 | 211 | <p> |
| 186 | 212 | <label for="siteurl">Site directory</label> |
| 187 | - <input type="text" name="siteurl" id="siteurl" value="<?php if (isset($globalURL)) print $globalURL; ?>" /> |
|
| 213 | + <input type="text" name="siteurl" id="siteurl" value="<?php if (isset($globalURL)) { |
|
| 214 | + print $globalURL; |
|
| 215 | +} |
|
| 216 | +?>" /> |
|
| 188 | 217 | <p class="help-block">Can be null. ex : <i>flightairmap</i> if complete URL is <i>http://toto.com/flightairmap</i></p> |
| 189 | 218 | </p> |
| 190 | 219 | <p> |
| 191 | 220 | <label for="timezone">Timezone</label> |
| 192 | - <input type="text" name="timezone" id="timezone" value="<?php if (isset($globalTimezone)) print $globalTimezone; ?>" /> |
|
| 221 | + <input type="text" name="timezone" id="timezone" value="<?php if (isset($globalTimezone)) { |
|
| 222 | + print $globalTimezone; |
|
| 223 | +} |
|
| 224 | +?>" /> |
|
| 193 | 225 | <p class="help-block">ex : UTC, Europe/Paris,...</p> |
| 194 | 226 | </p> |
| 195 | 227 | <p> |
| 196 | 228 | <label for="language">Language</label> |
| 197 | - <input type="text" name="language" id="language" value="<?php if (isset($globalLanguage)) print $globalLanguage; ?>" /> |
|
| 229 | + <input type="text" name="language" id="language" value="<?php if (isset($globalLanguage)) { |
|
| 230 | + print $globalLanguage; |
|
| 231 | +} |
|
| 232 | +?>" /> |
|
| 198 | 233 | <p class="help-block">Used only when link to wikipedia for now. Can be EN,DE,FR,...</p> |
| 199 | 234 | </p> |
| 200 | 235 | </fieldset> |
@@ -215,11 +250,17 @@ discard block |
||
| 215 | 250 | <div id="mapbox_data"> |
| 216 | 251 | <p> |
| 217 | 252 | <label for="mapboxid">Mapbox id</label> |
| 218 | - <input type="text" name="mapboxid" id="mapboxid" value="<?php if (isset($globalMapboxId)) print $globalMapboxId; ?>" /> |
|
| 253 | + <input type="text" name="mapboxid" id="mapboxid" value="<?php if (isset($globalMapboxId)) { |
|
| 254 | + print $globalMapboxId; |
|
| 255 | +} |
|
| 256 | +?>" /> |
|
| 219 | 257 | </p> |
| 220 | 258 | <p> |
| 221 | 259 | <label for="mapboxtoken">Mapbox token</label> |
| 222 | - <input type="text" name="mapboxtoken" id="mapboxtoken" value="<?php if (isset($globalMapboxToken)) print $globalMapboxToken; ?>" /> |
|
| 260 | + <input type="text" name="mapboxtoken" id="mapboxtoken" value="<?php if (isset($globalMapboxToken)) { |
|
| 261 | + print $globalMapboxToken; |
|
| 262 | +} |
|
| 263 | +?>" /> |
|
| 223 | 264 | </p> |
| 224 | 265 | <p class="help-block">Get a key <a href="https://www.mapbox.com/developers/">here</a></p> |
| 225 | 266 | </div> |
@@ -227,7 +268,10 @@ discard block |
||
| 227 | 268 | <div id="google_data"> |
| 228 | 269 | <p> |
| 229 | 270 | <label for="googlekey">Google API key</label> |
| 230 | - <input type="text" name="googlekey" id="googlekey" value="<?php if (isset($globalGoogleAPIKey)) print $globalGoogleAPIKey; ?>" /> |
|
| 271 | + <input type="text" name="googlekey" id="googlekey" value="<?php if (isset($globalGoogleAPIKey)) { |
|
| 272 | + print $globalGoogleAPIKey; |
|
| 273 | +} |
|
| 274 | +?>" /> |
|
| 231 | 275 | <p class="help-block">Get a key <a href="https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key">here</a></p> |
| 232 | 276 | </p> |
| 233 | 277 | </div> |
@@ -235,7 +279,10 @@ discard block |
||
| 235 | 279 | <div id="bing_data"> |
| 236 | 280 | <p> |
| 237 | 281 | <label for="bingkey">Bing Map key</label> |
| 238 | - <input type="text" name="bingkey" id="bingkey" value="<?php if (isset($globalBingMapKey)) print $globalBingMapKey; ?>" /> |
|
| 282 | + <input type="text" name="bingkey" id="bingkey" value="<?php if (isset($globalBingMapKey)) { |
|
| 283 | + print $globalBingMapKey; |
|
| 284 | +} |
|
| 285 | +?>" /> |
|
| 239 | 286 | <p class="help-block">Get a key <a href="https://www.bingmapsportal.com/">here</a></p> |
| 240 | 287 | </p> |
| 241 | 288 | </div> |
@@ -243,7 +290,10 @@ discard block |
||
| 243 | 290 | <div id="mapquest_data"> |
| 244 | 291 | <p> |
| 245 | 292 | <label for="mapquestkey">MapQuest key</label> |
| 246 | - <input type="text" name="mapquestkey" id="mapquestkey" value="<?php if (isset($globalMapQuestKey)) print $globalMapQuestKey; ?>" /> |
|
| 293 | + <input type="text" name="mapquestkey" id="mapquestkey" value="<?php if (isset($globalMapQuestKey)) { |
|
| 294 | + print $globalMapQuestKey; |
|
| 295 | +} |
|
| 296 | +?>" /> |
|
| 247 | 297 | <p class="help-block">Get a key <a href="https://developer.mapquest.com/user/me/apps">here</a></p> |
| 248 | 298 | </p> |
| 249 | 299 | </div> |
@@ -251,11 +301,17 @@ discard block |
||
| 251 | 301 | <div id="here_data"> |
| 252 | 302 | <p> |
| 253 | 303 | <label for="hereappid">Here App_Id</label> |
| 254 | - <input type="text" name="hereappid" id="hereappid" value="<?php if (isset($globalHereappId)) print $globalHereappId; ?>" /> |
|
| 304 | + <input type="text" name="hereappid" id="hereappid" value="<?php if (isset($globalHereappId)) { |
|
| 305 | + print $globalHereappId; |
|
| 306 | +} |
|
| 307 | +?>" /> |
|
| 255 | 308 | </p> |
| 256 | 309 | <p> |
| 257 | 310 | <label for="hereappcode">Here App_Code</label> |
| 258 | - <input type="text" name="hereappcode" id="hereappcode" value="<?php if (isset($globalHereappCode)) print $globalHereappCode; ?>" /> |
|
| 311 | + <input type="text" name="hereappcode" id="hereappcode" value="<?php if (isset($globalHereappCode)) { |
|
| 312 | + print $globalHereappCode; |
|
| 313 | +} |
|
| 314 | +?>" /> |
|
| 259 | 315 | </p> |
| 260 | 316 | <p class="help-block">Get a key <a href="https://developer.here.com/rest-apis/documentation/enterprise-map-tile/topics/quick-start.html">here</a></p> |
| 261 | 317 | </div> |
@@ -263,7 +319,10 @@ discard block |
||
| 263 | 319 | <div id="openweathermap_data"> |
| 264 | 320 | <p> |
| 265 | 321 | <label for="openweathermapkey">OpenWeatherMap key (weather layer)</label> |
| 266 | - <input type="text" name="openweathermapkey" id="openweathermapkey" value="<?php if (isset($globalOpenWeatherMapKey)) print $globalOpenWeatherMapKey; ?>" /> |
|
| 322 | + <input type="text" name="openweathermapkey" id="openweathermapkey" value="<?php if (isset($globalOpenWeatherMapKey)) { |
|
| 323 | + print $globalOpenWeatherMapKey; |
|
| 324 | +} |
|
| 325 | +?>" /> |
|
| 267 | 326 | <p class="help-block">Get a key <a href="https://openweathermap.org/">here</a></p> |
| 268 | 327 | </p> |
| 269 | 328 | </div> |
@@ -273,42 +332,86 @@ discard block |
||
| 273 | 332 | <legend>Coverage area</legend> |
| 274 | 333 | <p> |
| 275 | 334 | <label for="latitudemax">The maximum latitude (north)</label> |
| 276 | - <input type="text" name="latitudemax" id="latitudemax" value="<?php if (isset($globalLatitudeMax)) print $globalLatitudeMax; ?>" /> |
|
| 335 | + <input type="text" name="latitudemax" id="latitudemax" value="<?php if (isset($globalLatitudeMax)) { |
|
| 336 | + print $globalLatitudeMax; |
|
| 337 | +} |
|
| 338 | +?>" /> |
|
| 277 | 339 | </p> |
| 278 | 340 | <p> |
| 279 | 341 | <label for="latitudemin">The minimum latitude (south)</label> |
| 280 | - <input type="text" name="latitudemin" id="latitudemin" value="<?php if (isset($globalLatitudeMin)) print $globalLatitudeMin; ?>" /> |
|
| 342 | + <input type="text" name="latitudemin" id="latitudemin" value="<?php if (isset($globalLatitudeMin)) { |
|
| 343 | + print $globalLatitudeMin; |
|
| 344 | +} |
|
| 345 | +?>" /> |
|
| 281 | 346 | </p> |
| 282 | 347 | <p> |
| 283 | 348 | <label for="longitudemax">The maximum longitude (west)</label> |
| 284 | - <input type="text" name="longitudemax" id="longitudemax" value="<?php if (isset($globalLongitudeMax)) print $globalLongitudeMax; ?>" /> |
|
| 349 | + <input type="text" name="longitudemax" id="longitudemax" value="<?php if (isset($globalLongitudeMax)) { |
|
| 350 | + print $globalLongitudeMax; |
|
| 351 | +} |
|
| 352 | +?>" /> |
|
| 285 | 353 | </p> |
| 286 | 354 | <p> |
| 287 | 355 | <label for="longitudemin">The minimum longitude (east)</label> |
| 288 | - <input type="text" name="longitudemin" id="longitudemin" value="<?php if (isset($globalLongitudeMin)) print $globalLongitudeMin; ?>" /> |
|
| 356 | + <input type="text" name="longitudemin" id="longitudemin" value="<?php if (isset($globalLongitudeMin)) { |
|
| 357 | + print $globalLongitudeMin; |
|
| 358 | +} |
|
| 359 | +?>" /> |
|
| 289 | 360 | </p> |
| 290 | 361 | <p> |
| 291 | 362 | <label for="latitudecenter">The latitude center</label> |
| 292 | - <input type="text" name="latitudecenter" id="latitudecenter" value="<?php if (isset($globalCenterLatitude)) print $globalCenterLatitude; ?>" /> |
|
| 363 | + <input type="text" name="latitudecenter" id="latitudecenter" value="<?php if (isset($globalCenterLatitude)) { |
|
| 364 | + print $globalCenterLatitude; |
|
| 365 | +} |
|
| 366 | +?>" /> |
|
| 293 | 367 | </p> |
| 294 | 368 | <p> |
| 295 | 369 | <label for="longitudecenter">The longitude center</label> |
| 296 | - <input type="text" name="longitudecenter" id="longitudecenter" value="<?php if (isset($globalCenterLongitude)) print $globalCenterLongitude; ?>" /> |
|
| 370 | + <input type="text" name="longitudecenter" id="longitudecenter" value="<?php if (isset($globalCenterLongitude)) { |
|
| 371 | + print $globalCenterLongitude; |
|
| 372 | +} |
|
| 373 | +?>" /> |
|
| 297 | 374 | </p> |
| 298 | 375 | <p> |
| 299 | 376 | <label for="livezoom">Default Zoom on live map</label> |
| 300 | - <input type="number" name="livezoom" id="livezoom" value="<?php if (isset($globalLiveZoom)) print $globalLiveZoom; else print '9'; ?>" /> |
|
| 377 | + <input type="number" name="livezoom" id="livezoom" value="<?php if (isset($globalLiveZoom)) { |
|
| 378 | + print $globalLiveZoom; |
|
| 379 | +} else { |
|
| 380 | + print '9'; |
|
| 381 | +} |
|
| 382 | +?>" /> |
|
| 301 | 383 | </p> |
| 302 | 384 | <p> |
| 303 | 385 | <label for="squawk_country">Country for squawk usage</label> |
| 304 | 386 | <select name="squawk_country" id="squawk_country"> |
| 305 | - <option value="UK"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'UK') print ' selected '; ?>>UK</option> |
|
| 306 | - <option value="NZ"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NZ') print ' selected '; ?>>NZ</option> |
|
| 307 | - <option value="US"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'US') print ' selected '; ?>>US</option> |
|
| 308 | - <option value="AU"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'AU') print ' selected '; ?>>AU</option> |
|
| 309 | - <option value="NL"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NL') print ' selected '; ?>>NL</option> |
|
| 310 | - <option value="FR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'FR') print ' selected '; ?>>FR</option> |
|
| 311 | - <option value="TR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'TR') print ' selected '; ?>>TR</option> |
|
| 387 | + <option value="UK"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'UK') { |
|
| 388 | + print ' selected '; |
|
| 389 | +} |
|
| 390 | +?>>UK</option> |
|
| 391 | + <option value="NZ"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NZ') { |
|
| 392 | + print ' selected '; |
|
| 393 | +} |
|
| 394 | +?>>NZ</option> |
|
| 395 | + <option value="US"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'US') { |
|
| 396 | + print ' selected '; |
|
| 397 | +} |
|
| 398 | +?>>US</option> |
|
| 399 | + <option value="AU"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'AU') { |
|
| 400 | + print ' selected '; |
|
| 401 | +} |
|
| 402 | +?>>AU</option> |
|
| 403 | + <option value="NL"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'NL') { |
|
| 404 | + print ' selected '; |
|
| 405 | +} |
|
| 406 | +?>>NL</option> |
|
| 407 | + <option value="FR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'FR') { |
|
| 408 | + print ' selected '; |
|
| 409 | +} |
|
| 410 | +?>>FR</option> |
|
| 411 | + <option value="TR"<?php if (isset($globalSquawkCountry) && $globalSquawkCountry == 'TR') { |
|
| 412 | + print ' selected '; |
|
| 413 | +} |
|
| 414 | +?>>TR</option> |
|
| 312 | 415 | </select> |
| 313 | 416 | </p> |
| 314 | 417 | </fieldset> |
@@ -317,15 +420,24 @@ discard block |
||
| 317 | 420 | <p><i>Only put in DB flights that are inside a circle</i></p> |
| 318 | 421 | <p> |
| 319 | 422 | <label for="latitude">Center latitude</label> |
| 320 | - <input type="text" name="zoilatitude" id="latitude" value="<?php if (isset($globalDistanceIgnore['latitude'])) echo $globalDistanceIgnore['latitude']; ?>" /> |
|
| 423 | + <input type="text" name="zoilatitude" id="latitude" value="<?php if (isset($globalDistanceIgnore['latitude'])) { |
|
| 424 | + echo $globalDistanceIgnore['latitude']; |
|
| 425 | +} |
|
| 426 | +?>" /> |
|
| 321 | 427 | </p> |
| 322 | 428 | <p> |
| 323 | 429 | <label for="longitude">Center longitude</label> |
| 324 | - <input type="text" name="zoilongitude" id="longitude" value="<?php if (isset($globalDistanceIgnore['longitude'])) echo $globalDistanceIgnore['longitude']; ?>" /> |
|
| 430 | + <input type="text" name="zoilongitude" id="longitude" value="<?php if (isset($globalDistanceIgnore['longitude'])) { |
|
| 431 | + echo $globalDistanceIgnore['longitude']; |
|
| 432 | +} |
|
| 433 | +?>" /> |
|
| 325 | 434 | </p> |
| 326 | 435 | <p> |
| 327 | 436 | <label for="Distance">Distance (in km)</label> |
| 328 | - <input type="text" name="zoidistance" id="distance" value="<?php if (isset($globalDistanceIgnore['distance'])) echo $globalDistanceIgnore['distance']; ?>" /> |
|
| 437 | + <input type="text" name="zoidistance" id="distance" value="<?php if (isset($globalDistanceIgnore['distance'])) { |
|
| 438 | + echo $globalDistanceIgnore['distance']; |
|
| 439 | +} |
|
| 440 | +?>" /> |
|
| 329 | 441 | </p> |
| 330 | 442 | </fieldset> |
| 331 | 443 | <fieldset id="sourceloc"> |
@@ -438,11 +550,17 @@ discard block |
||
| 438 | 550 | <div id="flightaware_data"> |
| 439 | 551 | <p> |
| 440 | 552 | <label for="flightawareusername">FlightAware username</label> |
| 441 | - <input type="text" name="flightawareusername" id="flightawareusername" value="<?php if (isset($globalFlightAwareUsername)) print $globalFlightAwareUsername; ?>" /> |
|
| 553 | + <input type="text" name="flightawareusername" id="flightawareusername" value="<?php if (isset($globalFlightAwareUsername)) { |
|
| 554 | + print $globalFlightAwareUsername; |
|
| 555 | +} |
|
| 556 | +?>" /> |
|
| 442 | 557 | </p> |
| 443 | 558 | <p> |
| 444 | 559 | <label for="flightawarepassword">FlightAware password/API key</label> |
| 445 | - <input type="text" name="flightawarepassword" id="flightawarepassword" value="<?php if (isset($globalFlightAwarePassword)) print $globalFlightAwarePassword; ?>" /> |
|
| 560 | + <input type="text" name="flightawarepassword" id="flightawarepassword" value="<?php if (isset($globalFlightAwarePassword)) { |
|
| 561 | + print $globalFlightAwarePassword; |
|
| 562 | +} |
|
| 563 | +?>" /> |
|
| 446 | 564 | </p> |
| 447 | 565 | </div> |
| 448 | 566 | --> |
@@ -484,7 +602,10 @@ discard block |
||
| 484 | 602 | if (filter_var($source['host'],FILTER_VALIDATE_URL)) { |
| 485 | 603 | ?> |
| 486 | 604 | <td><input type="text" name="host[]" id="host" value="<?php print $source['host']; ?>" /></td> |
| 487 | - <td><input type="text" name="port[]" class="col-xs-2" id="port" value="<?php if (isset($source['port'])) print $source['port']; ?>" /></td> |
|
| 605 | + <td><input type="text" name="port[]" class="col-xs-2" id="port" value="<?php if (isset($source['port'])) { |
|
| 606 | + print $source['port']; |
|
| 607 | +} |
|
| 608 | +?>" /></td> |
|
| 488 | 609 | <?php |
| 489 | 610 | } else { |
| 490 | 611 | $hostport = explode(':',$source['host']); |
@@ -503,33 +624,102 @@ discard block |
||
| 503 | 624 | ?> |
| 504 | 625 | <td> |
| 505 | 626 | <select name="format[]" id="format"> |
| 506 | - <option value="auto" <?php if (!isset($source['format'])) print 'selected'; ?>>Auto</option> |
|
| 507 | - <option value="sbs" <?php if (isset($source['format']) && $source['format'] == 'sbs') print 'selected'; ?>>SBS</option> |
|
| 508 | - <option value="tsv" <?php if (isset($source['format']) && $source['format'] == 'tsv') print 'selected'; ?>>TSV</option> |
|
| 509 | - <option value="raw" <?php if (isset($source['format']) && $source['format'] == 'raw') print 'selected'; ?>>Raw</option> |
|
| 510 | - <option value="aprs" <?php if (isset($source['format']) && $source['format'] == 'aprs') print 'selected'; ?>>APRS</option> |
|
| 511 | - <option value="deltadbtxt" <?php if (isset($source['format']) && $source['format'] == 'deltadbtxt') print 'selected'; ?>>Radarcape deltadb.txt</option> |
|
| 512 | - <option value="vatsimtxt" <?php if (isset($source['format']) && $source['format'] == 'vatsimtxt') print 'selected'; ?>>Vatsim</option> |
|
| 513 | - <option value="aircraftlistjson" <?php if (isset($source['format']) && $source['format'] == 'aircraftlistjson') print 'selected'; ?>>Virtual Radar Server AircraftList.json</option> |
|
| 514 | - <option value="vrstcp" <?php if (isset($source['format']) && $source['format'] == 'vrstcp') print 'selected'; ?>>Virtual Radar Server TCP</option> |
|
| 515 | - <option value="phpvmacars" <?php if (isset($source['format']) && $source['format'] == 'phpvmacars') print 'selected'; ?>>phpVMS</option> |
|
| 516 | - <option value="vam" <?php if (isset($source['format']) && $source['format'] == 'vam') print 'selected'; ?>>Virtual Airlines Manager</option> |
|
| 517 | - <option value="whazzup" <?php if (isset($source['format']) && $source['format'] == 'whazzup') print 'selected'; ?>>IVAO</option> |
|
| 518 | - <option value="flightgearmp" <?php if (isset($source['format']) && $source['format'] == 'flightgearmp') print 'selected'; ?>>FlightGear Multiplayer</option> |
|
| 519 | - <option value="flightgearsp" <?php if (isset($source['format']) && $source['format'] == 'flightgearsp') print 'selected'; ?>>FlightGear Singleplayer</option> |
|
| 520 | - <option value="acars" <?php if (isset($source['format']) && $source['format'] == 'acars') print 'selected'; ?>>ACARS from acarsdec/acarsdeco2 over UDP</option> |
|
| 521 | - <option value="acarssbs3" <?php if (isset($source['format']) && $source['format'] == 'acarssbs3') print 'selected'; ?>>ACARS SBS-3 over TCP</option> |
|
| 522 | - <option value="ais" <?php if (isset($source['format']) && $source['format'] == 'ais') print 'selected'; ?>>NMEA AIS over TCP</option> |
|
| 523 | - <option value="airwhere" <?php if (isset($source['format']) && $source['format'] == 'airwhere') print 'selected'; ?>>AirWhere website</option> |
|
| 524 | - <option value="hidnseek_callback" <?php if (isset($source['format']) && $source['format'] == 'hidnseek_callback') print 'selected'; ?>>HidnSeek Callback</option> |
|
| 525 | - <option value="blitzortung" <?php if (isset($source['format']) && $source['format'] == 'blitzortung') print 'selected'; ?>>Blitzortung</option> |
|
| 627 | + <option value="auto" <?php if (!isset($source['format'])) { |
|
| 628 | + print 'selected'; |
|
| 629 | +} |
|
| 630 | +?>>Auto</option> |
|
| 631 | + <option value="sbs" <?php if (isset($source['format']) && $source['format'] == 'sbs') { |
|
| 632 | + print 'selected'; |
|
| 633 | +} |
|
| 634 | +?>>SBS</option> |
|
| 635 | + <option value="tsv" <?php if (isset($source['format']) && $source['format'] == 'tsv') { |
|
| 636 | + print 'selected'; |
|
| 637 | +} |
|
| 638 | +?>>TSV</option> |
|
| 639 | + <option value="raw" <?php if (isset($source['format']) && $source['format'] == 'raw') { |
|
| 640 | + print 'selected'; |
|
| 641 | +} |
|
| 642 | +?>>Raw</option> |
|
| 643 | + <option value="aprs" <?php if (isset($source['format']) && $source['format'] == 'aprs') { |
|
| 644 | + print 'selected'; |
|
| 645 | +} |
|
| 646 | +?>>APRS</option> |
|
| 647 | + <option value="deltadbtxt" <?php if (isset($source['format']) && $source['format'] == 'deltadbtxt') { |
|
| 648 | + print 'selected'; |
|
| 649 | +} |
|
| 650 | +?>>Radarcape deltadb.txt</option> |
|
| 651 | + <option value="vatsimtxt" <?php if (isset($source['format']) && $source['format'] == 'vatsimtxt') { |
|
| 652 | + print 'selected'; |
|
| 653 | +} |
|
| 654 | +?>>Vatsim</option> |
|
| 655 | + <option value="aircraftlistjson" <?php if (isset($source['format']) && $source['format'] == 'aircraftlistjson') { |
|
| 656 | + print 'selected'; |
|
| 657 | +} |
|
| 658 | +?>>Virtual Radar Server AircraftList.json</option> |
|
| 659 | + <option value="vrstcp" <?php if (isset($source['format']) && $source['format'] == 'vrstcp') { |
|
| 660 | + print 'selected'; |
|
| 661 | +} |
|
| 662 | +?>>Virtual Radar Server TCP</option> |
|
| 663 | + <option value="phpvmacars" <?php if (isset($source['format']) && $source['format'] == 'phpvmacars') { |
|
| 664 | + print 'selected'; |
|
| 665 | +} |
|
| 666 | +?>>phpVMS</option> |
|
| 667 | + <option value="vam" <?php if (isset($source['format']) && $source['format'] == 'vam') { |
|
| 668 | + print 'selected'; |
|
| 669 | +} |
|
| 670 | +?>>Virtual Airlines Manager</option> |
|
| 671 | + <option value="whazzup" <?php if (isset($source['format']) && $source['format'] == 'whazzup') { |
|
| 672 | + print 'selected'; |
|
| 673 | +} |
|
| 674 | +?>>IVAO</option> |
|
| 675 | + <option value="flightgearmp" <?php if (isset($source['format']) && $source['format'] == 'flightgearmp') { |
|
| 676 | + print 'selected'; |
|
| 677 | +} |
|
| 678 | +?>>FlightGear Multiplayer</option> |
|
| 679 | + <option value="flightgearsp" <?php if (isset($source['format']) && $source['format'] == 'flightgearsp') { |
|
| 680 | + print 'selected'; |
|
| 681 | +} |
|
| 682 | +?>>FlightGear Singleplayer</option> |
|
| 683 | + <option value="acars" <?php if (isset($source['format']) && $source['format'] == 'acars') { |
|
| 684 | + print 'selected'; |
|
| 685 | +} |
|
| 686 | +?>>ACARS from acarsdec/acarsdeco2 over UDP</option> |
|
| 687 | + <option value="acarssbs3" <?php if (isset($source['format']) && $source['format'] == 'acarssbs3') { |
|
| 688 | + print 'selected'; |
|
| 689 | +} |
|
| 690 | +?>>ACARS SBS-3 over TCP</option> |
|
| 691 | + <option value="ais" <?php if (isset($source['format']) && $source['format'] == 'ais') { |
|
| 692 | + print 'selected'; |
|
| 693 | +} |
|
| 694 | +?>>NMEA AIS over TCP</option> |
|
| 695 | + <option value="airwhere" <?php if (isset($source['format']) && $source['format'] == 'airwhere') { |
|
| 696 | + print 'selected'; |
|
| 697 | +} |
|
| 698 | +?>>AirWhere website</option> |
|
| 699 | + <option value="hidnseek_callback" <?php if (isset($source['format']) && $source['format'] == 'hidnseek_callback') { |
|
| 700 | + print 'selected'; |
|
| 701 | +} |
|
| 702 | +?>>HidnSeek Callback</option> |
|
| 703 | + <option value="blitzortung" <?php if (isset($source['format']) && $source['format'] == 'blitzortung') { |
|
| 704 | + print 'selected'; |
|
| 705 | +} |
|
| 706 | +?>>Blitzortung</option> |
|
| 526 | 707 | </select> |
| 527 | 708 | </td> |
| 528 | 709 | <td> |
| 529 | - <input type="text" name="name[]" id="name" value="<?php if (isset($source['name'])) print $source['name']; ?>" /> |
|
| 710 | + <input type="text" name="name[]" id="name" value="<?php if (isset($source['name'])) { |
|
| 711 | + print $source['name']; |
|
| 712 | +} |
|
| 713 | +?>" /> |
|
| 530 | 714 | </td> |
| 531 | - <td><input type="checkbox" name="sourcestats[]" id="sourcestats" title="Create statistics for the source like number of messages, distance,..." value="1" <?php if (isset($source['sourcestats']) && $source['sourcestats']) print 'checked'; ?> /></td> |
|
| 532 | - <td><input type="checkbox" name="noarchive[]" id="noarchive" title="Don't archive this source" value="1" <?php if (isset($source['noarchive']) && $source['noarchive']) print 'checked'; ?> /></td> |
|
| 715 | + <td><input type="checkbox" name="sourcestats[]" id="sourcestats" title="Create statistics for the source like number of messages, distance,..." value="1" <?php if (isset($source['sourcestats']) && $source['sourcestats']) { |
|
| 716 | + print 'checked'; |
|
| 717 | +} |
|
| 718 | +?> /></td> |
|
| 719 | + <td><input type="checkbox" name="noarchive[]" id="noarchive" title="Don't archive this source" value="1" <?php if (isset($source['noarchive']) && $source['noarchive']) { |
|
| 720 | + print 'checked'; |
|
| 721 | +} |
|
| 722 | +?> /></td> |
|
| 533 | 723 | <td> |
| 534 | 724 | <select name="timezones[]" id="timezones"> |
| 535 | 725 | <?php |
@@ -539,7 +729,9 @@ discard block |
||
| 539 | 729 | print '<option selected>'.$timezones.'</option>'; |
| 540 | 730 | } elseif (!isset($source['timezone']) && $timezones == 'UTC') { |
| 541 | 731 | print '<option selected>'.$timezones.'</option>'; |
| 542 | - } else print '<option>'.$timezones.'</option>'; |
|
| 732 | + } else { |
|
| 733 | + print '<option>'.$timezones.'</option>'; |
|
| 734 | + } |
|
| 543 | 735 | } |
| 544 | 736 | ?> |
| 545 | 737 | </select> |
@@ -589,7 +781,9 @@ discard block |
||
| 589 | 781 | foreach($timezonelist as $timezones){ |
| 590 | 782 | if ($timezones == 'UTC') { |
| 591 | 783 | print '<option selected>'.$timezones.'</option>'; |
| 592 | - } else print '<option>'.$timezones.'</option>'; |
|
| 784 | + } else { |
|
| 785 | + print '<option>'.$timezones.'</option>'; |
|
| 786 | + } |
|
| 593 | 787 | } |
| 594 | 788 | ?> |
| 595 | 789 | </select> |
@@ -612,11 +806,17 @@ discard block |
||
| 612 | 806 | <p>Listen UDP server for acarsdec/acarsdeco2/... with <i>daemon-acars.php</i> script</p> |
| 613 | 807 | <p> |
| 614 | 808 | <label for="acarshost">ACARS UDP host</label> |
| 615 | - <input type="text" name="acarshost" id="acarshost" value="<?php if (isset($globalACARSHost)) print $globalACARSHost; ?>" /> |
|
| 809 | + <input type="text" name="acarshost" id="acarshost" value="<?php if (isset($globalACARSHost)) { |
|
| 810 | + print $globalACARSHost; |
|
| 811 | +} |
|
| 812 | +?>" /> |
|
| 616 | 813 | </p> |
| 617 | 814 | <p> |
| 618 | 815 | <label for="acarsport">ACARS UDP port</label> |
| 619 | - <input type="number" name="acarsport" id="acarsport" value="<?php if (isset($globalACARSPort)) print $globalACARSPort; ?>" /> |
|
| 816 | + <input type="number" name="acarsport" id="acarsport" value="<?php if (isset($globalACARSPort)) { |
|
| 817 | + print $globalACARSPort; |
|
| 818 | +} |
|
| 819 | +?>" /> |
|
| 620 | 820 | </p> |
| 621 | 821 | </fieldset> |
| 622 | 822 | </div> |
@@ -703,13 +903,19 @@ discard block |
||
| 703 | 903 | <div id="schedules_options"> |
| 704 | 904 | <p> |
| 705 | 905 | <label for="britishairways">British Airways API Key</label> |
| 706 | - <input type="text" name="britishairways" id="britishairways" value="<?php if (isset($globalBritishAirwaysKey)) print $globalBritishAirwaysKey; ?>" /> |
|
| 906 | + <input type="text" name="britishairways" id="britishairways" value="<?php if (isset($globalBritishAirwaysKey)) { |
|
| 907 | + print $globalBritishAirwaysKey; |
|
| 908 | +} |
|
| 909 | +?>" /> |
|
| 707 | 910 | <p class="help-block">Register an account on <a href="https://developer.ba.com/">https://developer.ba.com/</a></p> |
| 708 | 911 | </p> |
| 709 | 912 | <!-- |
| 710 | 913 | <p> |
| 711 | 914 | <label for="transavia">Transavia Test API Consumer Key</label> |
| 712 | - <input type="text" name="transavia" id="transavia" value="<?php if (isset($globalTransaviaKey)) print $globalTransaviaKey; ?>" /> |
|
| 915 | + <input type="text" name="transavia" id="transavia" value="<?php if (isset($globalTransaviaKey)) { |
|
| 916 | + print $globalTransaviaKey; |
|
| 917 | +} |
|
| 918 | +?>" /> |
|
| 713 | 919 | <p class="help-block">Register an account on <a href="https://developer.transavia.com">https://developer.transavia.com</a></p> |
| 714 | 920 | </p> |
| 715 | 921 | --> |
@@ -718,10 +924,16 @@ discard block |
||
| 718 | 924 | <b>Lufthansa API Key</b> |
| 719 | 925 | <p> |
| 720 | 926 | <label for="lufthansakey">Key</label> |
| 721 | - <input type="text" name="lufthansakey" id="lufthansakey" value="<?php if (isset($globalLufthansaKey['key'])) print $globalLufthansaKey['key']; ?>" /> |
|
| 927 | + <input type="text" name="lufthansakey" id="lufthansakey" value="<?php if (isset($globalLufthansaKey['key'])) { |
|
| 928 | + print $globalLufthansaKey['key']; |
|
| 929 | +} |
|
| 930 | +?>" /> |
|
| 722 | 931 | </p><p> |
| 723 | 932 | <label for="lufthansasecret">Secret</label> |
| 724 | - <input type="text" name="lufthansasecret" id="lufthansasecret" value="<?php if (isset($globalLufthansaKey['secret'])) print $globalLufthansaKey['secret']; ?>" /> |
|
| 933 | + <input type="text" name="lufthansasecret" id="lufthansasecret" value="<?php if (isset($globalLufthansaKey['secret'])) { |
|
| 934 | + print $globalLufthansaKey['secret']; |
|
| 935 | +} |
|
| 936 | +?>" /> |
|
| 725 | 937 | </p> |
| 726 | 938 | </div> |
| 727 | 939 | <p class="help-block">Register an account on <a href="https://developer.lufthansa.com/page">https://developer.lufthansa.com/page</a></p> |
@@ -741,7 +953,10 @@ discard block |
||
| 741 | 953 | </p> |
| 742 | 954 | <p> |
| 743 | 955 | <label for="notamsource">URL of your feed from notaminfo.com</label> |
| 744 | - <input type="text" name="notamsource" id="notamsource" value="<?php if (isset($globalNOTAMSource)) print $globalNOTAMSource; ?>" /> |
|
| 956 | + <input type="text" name="notamsource" id="notamsource" value="<?php if (isset($globalNOTAMSource)) { |
|
| 957 | + print $globalNOTAMSource; |
|
| 958 | +} |
|
| 959 | +?>" /> |
|
| 745 | 960 | <p class="help-block">If you want to use world NOTAM from FlightAirMap website, leave it blank</p> |
| 746 | 961 | </p> |
| 747 | 962 | <br /> |
@@ -757,14 +972,20 @@ discard block |
||
| 757 | 972 | <div id="metarsrc"> |
| 758 | 973 | <p> |
| 759 | 974 | <label for="metarsource">URL of your METAR source</label> |
| 760 | - <input type="text" name="metarsource" id="metarsource" value="<?php if (isset($globalMETARurl)) print $globalMETARurl; ?>" /> |
|
| 975 | + <input type="text" name="metarsource" id="metarsource" value="<?php if (isset($globalMETARurl)) { |
|
| 976 | + print $globalMETARurl; |
|
| 977 | +} |
|
| 978 | +?>" /> |
|
| 761 | 979 | <p class="help-block">Use {icao} to specify where we replace by airport icao. ex : http://metar.vatsim.net/metar.php?id={icao}</p> |
| 762 | 980 | </p> |
| 763 | 981 | </div> |
| 764 | 982 | <br /> |
| 765 | 983 | <p> |
| 766 | 984 | <label for="bitly">Bit.ly access token api (used in search page)</label> |
| 767 | - <input type="text" name="bitly" id="bitly" value="<?php if (isset($globalBitlyAccessToken)) print $globalBitlyAccessToken; ?>" /> |
|
| 985 | + <input type="text" name="bitly" id="bitly" value="<?php if (isset($globalBitlyAccessToken)) { |
|
| 986 | + print $globalBitlyAccessToken; |
|
| 987 | +} |
|
| 988 | +?>" /> |
|
| 768 | 989 | </p> |
| 769 | 990 | <br /> |
| 770 | 991 | <p> |
@@ -780,11 +1001,26 @@ discard block |
||
| 780 | 1001 | <p> |
| 781 | 1002 | <label for="geoid_source">Geoid Source</label> |
| 782 | 1003 | <select name="geoid_source" id="geoid_source"> |
| 783 | - <option value="egm96-15"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm96-15') print ' selected="selected"'; ?>>EGM96 15' (2.1MB)</option> |
|
| 784 | - <option value="egm96-5"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm96-5') print ' selected="selected"'; ?>>EGM96 5' (19MB)</option> |
|
| 785 | - <option value="egm2008-5"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm2008-5') print ' selected="selected"'; ?>>EGM2008 5' (19MB)</option> |
|
| 786 | - <option value="egm2008-2_5"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm2008-2_5') print ' selected="selected"'; ?>>EGM2008 2.5' (75MB)</option> |
|
| 787 | - <option value="egm2008-1"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm2008-1') print ' selected="selected"'; ?>>EGM2008 1' (470MB)</option> |
|
| 1004 | + <option value="egm96-15"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm96-15') { |
|
| 1005 | + print ' selected="selected"'; |
|
| 1006 | +} |
|
| 1007 | +?>>EGM96 15' (2.1MB)</option> |
|
| 1008 | + <option value="egm96-5"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm96-5') { |
|
| 1009 | + print ' selected="selected"'; |
|
| 1010 | +} |
|
| 1011 | +?>>EGM96 5' (19MB)</option> |
|
| 1012 | + <option value="egm2008-5"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm2008-5') { |
|
| 1013 | + print ' selected="selected"'; |
|
| 1014 | +} |
|
| 1015 | +?>>EGM2008 5' (19MB)</option> |
|
| 1016 | + <option value="egm2008-2_5"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm2008-2_5') { |
|
| 1017 | + print ' selected="selected"'; |
|
| 1018 | +} |
|
| 1019 | +?>>EGM2008 2.5' (75MB)</option> |
|
| 1020 | + <option value="egm2008-1"<?php if (isset($globalGeoidSource) && $globalGeoidSource == 'egm2008-1') { |
|
| 1021 | + print ' selected="selected"'; |
|
| 1022 | +} |
|
| 1023 | +?>>EGM2008 1' (470MB)</option> |
|
| 788 | 1024 | </select> |
| 789 | 1025 | <p class="help-block">The geoid is approximated by an "earth gravity model" (EGM).</p> |
| 790 | 1026 | </p> |
@@ -802,7 +1038,12 @@ discard block |
||
| 802 | 1038 | </p> |
| 803 | 1039 | <p> |
| 804 | 1040 | <label for="archivemonths">Generate statistics, delete or put in archive flights older than xx months</label> |
| 805 | - <input type="number" name="archivemonths" id="archivemonths" value="<?php if (isset($globalArchiveMonths)) print $globalArchiveMonths; else echo '1'; ?>" /> |
|
| 1041 | + <input type="number" name="archivemonths" id="archivemonths" value="<?php if (isset($globalArchiveMonths)) { |
|
| 1042 | + print $globalArchiveMonths; |
|
| 1043 | +} else { |
|
| 1044 | + echo '1'; |
|
| 1045 | +} |
|
| 1046 | +?>" /> |
|
| 806 | 1047 | <p class="help-block">0 to disable, delete old flight if <i>Archive all flights data</i> is disabled</p> |
| 807 | 1048 | </p> |
| 808 | 1049 | <p> |
@@ -812,12 +1053,22 @@ discard block |
||
| 812 | 1053 | </p> |
| 813 | 1054 | <p> |
| 814 | 1055 | <label for="archivekeepmonths">Keep flights data for xx months in archive</label> |
| 815 | - <input type="number" name="archivekeepmonths" id="archivekeepmonths" value="<?php if (isset($globalArchiveKeepMonths)) print $globalArchiveKeepMonths; else echo '1'; ?>" /> |
|
| 1056 | + <input type="number" name="archivekeepmonths" id="archivekeepmonths" value="<?php if (isset($globalArchiveKeepMonths)) { |
|
| 1057 | + print $globalArchiveKeepMonths; |
|
| 1058 | +} else { |
|
| 1059 | + echo '1'; |
|
| 1060 | +} |
|
| 1061 | +?>" /> |
|
| 816 | 1062 | <p class="help-block">0 to disable</p> |
| 817 | 1063 | </p> |
| 818 | 1064 | <p> |
| 819 | 1065 | <label for="archivekeeptrackmonths">Keep flights track data for xx months in archive</label> |
| 820 | - <input type="number" name="archivekeeptrackmonths" id="archivekeeptrackmonths" value="<?php if (isset($globalArchiveKeepTrackMonths)) print $globalArchiveKeepTrackMonths; else echo '1'; ?>" /> |
|
| 1066 | + <input type="number" name="archivekeeptrackmonths" id="archivekeeptrackmonths" value="<?php if (isset($globalArchiveKeepTrackMonths)) { |
|
| 1067 | + print $globalArchiveKeepTrackMonths; |
|
| 1068 | +} else { |
|
| 1069 | + echo '1'; |
|
| 1070 | +} |
|
| 1071 | +?>" /> |
|
| 821 | 1072 | <p class="help-block">0 to disable, should be less or egal to <i>Keep flights data</i> value</p> |
| 822 | 1073 | </p> |
| 823 | 1074 | <br /> |
@@ -827,7 +1078,12 @@ discard block |
||
| 827 | 1078 | <p class="help-block">Uncheck if the script is running as cron job</p> |
| 828 | 1079 | <div id="cronends"> |
| 829 | 1080 | <label for="cronend">Run script for xx seconds</label> |
| 830 | - <input type="number" name="cronend" id="cronend" value="<?php if (isset($globalCronEnd)) print $globalCronEnd; else print '0'; ?>" /> |
|
| 1081 | + <input type="number" name="cronend" id="cronend" value="<?php if (isset($globalCronEnd)) { |
|
| 1082 | + print $globalCronEnd; |
|
| 1083 | +} else { |
|
| 1084 | + print '0'; |
|
| 1085 | +} |
|
| 1086 | +?>" /> |
|
| 831 | 1087 | <p class="help-block">Set to 0 to disable. Should be disabled if source is URL.</p> |
| 832 | 1088 | </div> |
| 833 | 1089 | </p> |
@@ -880,15 +1136,30 @@ discard block |
||
| 880 | 1136 | <br /> |
| 881 | 1137 | <p> |
| 882 | 1138 | <label for="refresh">Show flights detected since xxx seconds</label> |
| 883 | - <input type="number" name="refresh" id="refresh" value="<?php if (isset($globalLiveInterval)) echo $globalLiveInterval; else echo '200'; ?>" /> |
|
| 1139 | + <input type="number" name="refresh" id="refresh" value="<?php if (isset($globalLiveInterval)) { |
|
| 1140 | + echo $globalLiveInterval; |
|
| 1141 | +} else { |
|
| 1142 | + echo '200'; |
|
| 1143 | +} |
|
| 1144 | +?>" /> |
|
| 884 | 1145 | </p> |
| 885 | 1146 | <p> |
| 886 | 1147 | <label for="maprefresh">Live map refresh (in seconds)</label> |
| 887 | - <input type="number" name="maprefresh" id="maprefresh" value="<?php if (isset($globalMapRefresh)) echo $globalMapRefresh; else echo '30'; ?>" /> |
|
| 1148 | + <input type="number" name="maprefresh" id="maprefresh" value="<?php if (isset($globalMapRefresh)) { |
|
| 1149 | + echo $globalMapRefresh; |
|
| 1150 | +} else { |
|
| 1151 | + echo '30'; |
|
| 1152 | +} |
|
| 1153 | +?>" /> |
|
| 888 | 1154 | </p> |
| 889 | 1155 | <p> |
| 890 | 1156 | <label for="mapidle">Map idle timeout (in minutes)</label> |
| 891 | - <input type="number" name="mapidle" id="mapidle" value="<?php if (isset($globalMapIdleTimeout)) echo $globalMapIdleTimeout; else echo '30'; ?>" /> |
|
| 1157 | + <input type="number" name="mapidle" id="mapidle" value="<?php if (isset($globalMapIdleTimeout)) { |
|
| 1158 | + echo $globalMapIdleTimeout; |
|
| 1159 | +} else { |
|
| 1160 | + echo '30'; |
|
| 1161 | +} |
|
| 1162 | +?>" /> |
|
| 892 | 1163 | <p class="help-block">0 to disable</p> |
| 893 | 1164 | </p> |
| 894 | 1165 | <p> |
@@ -903,12 +1174,20 @@ discard block |
||
| 903 | 1174 | <br /> |
| 904 | 1175 | <p> |
| 905 | 1176 | <label for="closestmindist">Distance to airport set as arrival (in km)</label> |
| 906 | - <input type="number" name="closestmindist" id="closestmindist" value="<?php if (isset($globalClosestMinDist)) echo $globalClosestMinDist; else echo '50'; ?>" /> |
|
| 1177 | + <input type="number" name="closestmindist" id="closestmindist" value="<?php if (isset($globalClosestMinDist)) { |
|
| 1178 | + echo $globalClosestMinDist; |
|
| 1179 | +} else { |
|
| 1180 | + echo '50'; |
|
| 1181 | +} |
|
| 1182 | +?>" /> |
|
| 907 | 1183 | </p> |
| 908 | 1184 | <br /> |
| 909 | 1185 | <p> |
| 910 | 1186 | <label for="aircraftsize">Size of aircraft icon on map (default to 30px if zoom > 7 else 15px), empty to default</label> |
| 911 | - <input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) echo $globalAircraftSize;?>" /> |
|
| 1187 | + <input type="number" name="aircraftsize" id="aircraftsize" value="<?php if (isset($globalAircraftSize)) { |
|
| 1188 | + echo $globalAircraftSize; |
|
| 1189 | +} |
|
| 1190 | +?>" /> |
|
| 912 | 1191 | </p> |
| 913 | 1192 | <br /> |
| 914 | 1193 | <p> |
@@ -921,7 +1200,12 @@ discard block |
||
| 921 | 1200 | if (extension_loaded('gd') && function_exists('gd_info')) { |
| 922 | 1201 | ?> |
| 923 | 1202 | <label for="aircrafticoncolor">Color of aircraft icon on map</label> |
| 924 | - <input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) echo $globalAircraftIconColor; else echo '1a3151'; ?>" /> |
|
| 1203 | + <input type="color" name="aircrafticoncolor" id="aircrafticoncolor" value="#<?php if (isset($globalAircraftIconColor)) { |
|
| 1204 | + echo $globalAircraftIconColor; |
|
| 1205 | +} else { |
|
| 1206 | + echo '1a3151'; |
|
| 1207 | +} |
|
| 1208 | +?>" /> |
|
| 925 | 1209 | <?php |
| 926 | 1210 | if (!is_writable('../cache')) { |
| 927 | 1211 | ?> |
@@ -939,14 +1223,27 @@ discard block |
||
| 939 | 1223 | <p> |
| 940 | 1224 | <label for="airportzoom">Zoom level minimum to see airports icons</label> |
| 941 | 1225 | <div class="range"> |
| 942 | - <input type="range" name="airportzoom" id="airportzoom" value="<?php if (isset($globalAirportZoom)) echo $globalAirportZoom; else echo '7'; ?>" /> |
|
| 943 | - <output id="range"><?php if (isset($globalAirportZoom)) echo $globalAirportZoom; else echo '7'; ?></output> |
|
| 1226 | + <input type="range" name="airportzoom" id="airportzoom" value="<?php if (isset($globalAirportZoom)) { |
|
| 1227 | + echo $globalAirportZoom; |
|
| 1228 | +} else { |
|
| 1229 | + echo '7'; |
|
| 1230 | +} |
|
| 1231 | +?>" /> |
|
| 1232 | + <output id="range"><?php if (isset($globalAirportZoom)) { |
|
| 1233 | + echo $globalAirportZoom; |
|
| 1234 | +} else { |
|
| 1235 | + echo '7'; |
|
| 1236 | +} |
|
| 1237 | +?></output> |
|
| 944 | 1238 | </div> |
| 945 | 1239 | </p> |
| 946 | 1240 | <br /> |
| 947 | 1241 | <p> |
| 948 | 1242 | <label for="customcss">Custom CSS web path</label> |
| 949 | - <input type="text" name="customcss" id="customcss" value="<?php if (isset($globalCustomCSS)) echo $globalCustomCSS; ?>" /> |
|
| 1243 | + <input type="text" name="customcss" id="customcss" value="<?php if (isset($globalCustomCSS)) { |
|
| 1244 | + echo $globalCustomCSS; |
|
| 1245 | +} |
|
| 1246 | +?>" /> |
|
| 950 | 1247 | </p> |
| 951 | 1248 | </fieldset> |
| 952 | 1249 | <input type="submit" name="submit" value="Create/Update database & write setup" /> |
@@ -973,8 +1270,12 @@ discard block |
||
| 973 | 1270 | $dbhost = filter_input(INPUT_POST,'dbhost',FILTER_SANITIZE_STRING); |
| 974 | 1271 | $dbport = filter_input(INPUT_POST,'dbport',FILTER_SANITIZE_STRING); |
| 975 | 1272 | |
| 976 | - if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) $error .= 'Mysql driver for PDO must be loaded'; |
|
| 977 | - if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) $error .= 'PosgreSQL driver for PDO must be loaded'; |
|
| 1273 | + if ($dbtype == 'mysql' && !extension_loaded('pdo_mysql')) { |
|
| 1274 | + $error .= 'Mysql driver for PDO must be loaded'; |
|
| 1275 | + } |
|
| 1276 | + if ($dbtype == 'pgsql' && !extension_loaded('pdo_pgsql')) { |
|
| 1277 | + $error .= 'PosgreSQL driver for PDO must be loaded'; |
|
| 1278 | + } |
|
| 978 | 1279 | |
| 979 | 1280 | $_SESSION['database_root'] = $dbroot; |
| 980 | 1281 | $_SESSION['database_rootpass'] = $dbrootpass; |
@@ -1042,15 +1343,23 @@ discard block |
||
| 1042 | 1343 | $source_city = $_POST['source_city']; |
| 1043 | 1344 | $source_country = $_POST['source_country']; |
| 1044 | 1345 | $source_ref = $_POST['source_ref']; |
| 1045 | - if (isset($source_id)) $source_id = $_POST['source_id']; |
|
| 1046 | - else $source_id = array(); |
|
| 1346 | + if (isset($source_id)) { |
|
| 1347 | + $source_id = $_POST['source_id']; |
|
| 1348 | + } else { |
|
| 1349 | + $source_id = array(); |
|
| 1350 | + } |
|
| 1047 | 1351 | |
| 1048 | 1352 | $sources = array(); |
| 1049 | 1353 | foreach ($source_name as $keys => $name) { |
| 1050 | - if (isset($source_id[$keys])) $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
| 1051 | - else $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
| 1354 | + if (isset($source_id[$keys])) { |
|
| 1355 | + $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'id' => $source_id[$keys],'source' => $source_ref[$keys]); |
|
| 1356 | + } else { |
|
| 1357 | + $sources[] = array('name' => $name,'latitude' => $source_latitude[$keys],'longitude' => $source_longitude[$keys],'altitude' => $source_altitude[$keys],'city' => $source_city[$keys],'country' => $source_country[$keys],'source' => $source_ref[$keys]); |
|
| 1358 | + } |
|
| 1359 | + } |
|
| 1360 | + if (count($sources) > 0) { |
|
| 1361 | + $_SESSION['sources'] = $sources; |
|
| 1052 | 1362 | } |
| 1053 | - if (count($sources) > 0) $_SESSION['sources'] = $sources; |
|
| 1054 | 1363 | |
| 1055 | 1364 | //$sbshost = filter_input(INPUT_POST,'sbshost',FILTER_SANITIZE_STRING); |
| 1056 | 1365 | //$sbsport = filter_input(INPUT_POST,'sbsport',FILTER_SANITIZE_NUMBER_INT); |
@@ -1071,17 +1380,29 @@ discard block |
||
| 1071 | 1380 | $datasource = filter_input(INPUT_POST,'datasource',FILTER_SANITIZE_STRING); |
| 1072 | 1381 | |
| 1073 | 1382 | $globalaircraft = filter_input(INPUT_POST,'globalaircraft',FILTER_SANITIZE_STRING); |
| 1074 | - if ($globalaircraft == 'aircraft') $settings = array_merge($settings,array('globalAircraft' => 'TRUE')); |
|
| 1075 | - else $settings = array_merge($settings,array('globalAircraft' => 'FALSE')); |
|
| 1383 | + if ($globalaircraft == 'aircraft') { |
|
| 1384 | + $settings = array_merge($settings,array('globalAircraft' => 'TRUE')); |
|
| 1385 | + } else { |
|
| 1386 | + $settings = array_merge($settings,array('globalAircraft' => 'FALSE')); |
|
| 1387 | + } |
|
| 1076 | 1388 | $globaltracker = filter_input(INPUT_POST,'globaltracker',FILTER_SANITIZE_STRING); |
| 1077 | - if ($globaltracker == 'tracker') $settings = array_merge($settings,array('globalTracker' => 'TRUE')); |
|
| 1078 | - else $settings = array_merge($settings,array('globalTracker' => 'FALSE')); |
|
| 1389 | + if ($globaltracker == 'tracker') { |
|
| 1390 | + $settings = array_merge($settings,array('globalTracker' => 'TRUE')); |
|
| 1391 | + } else { |
|
| 1392 | + $settings = array_merge($settings,array('globalTracker' => 'FALSE')); |
|
| 1393 | + } |
|
| 1079 | 1394 | $globalmarine = filter_input(INPUT_POST,'globalmarine',FILTER_SANITIZE_STRING); |
| 1080 | - if ($globalmarine == 'marine') $settings = array_merge($settings,array('globalMarine' => 'TRUE')); |
|
| 1081 | - else $settings = array_merge($settings,array('globalMarine' => 'FALSE')); |
|
| 1395 | + if ($globalmarine == 'marine') { |
|
| 1396 | + $settings = array_merge($settings,array('globalMarine' => 'TRUE')); |
|
| 1397 | + } else { |
|
| 1398 | + $settings = array_merge($settings,array('globalMarine' => 'FALSE')); |
|
| 1399 | + } |
|
| 1082 | 1400 | $globalsatellite = filter_input(INPUT_POST,'globalsatellite',FILTER_SANITIZE_STRING); |
| 1083 | - if ($globalsatellite == 'satellite') $settings = array_merge($settings,array('globalSatellite' => 'TRUE')); |
|
| 1084 | - else $settings = array_merge($settings,array('globalSatellite' => 'FALSE')); |
|
| 1401 | + if ($globalsatellite == 'satellite') { |
|
| 1402 | + $settings = array_merge($settings,array('globalSatellite' => 'TRUE')); |
|
| 1403 | + } else { |
|
| 1404 | + $settings = array_merge($settings,array('globalSatellite' => 'FALSE')); |
|
| 1405 | + } |
|
| 1085 | 1406 | |
| 1086 | 1407 | /* |
| 1087 | 1408 | $globalSBS1Hosts = array(); |
@@ -1103,23 +1424,37 @@ discard block |
||
| 1103 | 1424 | $name = $_POST['name']; |
| 1104 | 1425 | $format = $_POST['format']; |
| 1105 | 1426 | $timezones = $_POST['timezones']; |
| 1106 | - if (isset($_POST['sourcestats'])) $sourcestats = $_POST['sourcestats']; |
|
| 1107 | - else $sourcestats = array(); |
|
| 1108 | - if (isset($_POST['noarchive'])) $noarchive = $_POST['noarchive']; |
|
| 1109 | - else $noarchive = array(); |
|
| 1427 | + if (isset($_POST['sourcestats'])) { |
|
| 1428 | + $sourcestats = $_POST['sourcestats']; |
|
| 1429 | + } else { |
|
| 1430 | + $sourcestats = array(); |
|
| 1431 | + } |
|
| 1432 | + if (isset($_POST['noarchive'])) { |
|
| 1433 | + $noarchive = $_POST['noarchive']; |
|
| 1434 | + } else { |
|
| 1435 | + $noarchive = array(); |
|
| 1436 | + } |
|
| 1110 | 1437 | $gSources = array(); |
| 1111 | 1438 | $forcepilots = false; |
| 1112 | 1439 | foreach ($host as $key => $h) { |
| 1113 | - if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) $cov = 'TRUE'; |
|
| 1114 | - else $cov = 'FALSE'; |
|
| 1115 | - if (isset($noarchive[$key]) && $noarchive[$key] == 1) $arch = 'TRUE'; |
|
| 1116 | - else $arch = 'FALSE'; |
|
| 1440 | + if (isset($sourcestats[$key]) && $sourcestats[$key] == 1) { |
|
| 1441 | + $cov = 'TRUE'; |
|
| 1442 | + } else { |
|
| 1443 | + $cov = 'FALSE'; |
|
| 1444 | + } |
|
| 1445 | + if (isset($noarchive[$key]) && $noarchive[$key] == 1) { |
|
| 1446 | + $arch = 'TRUE'; |
|
| 1447 | + } else { |
|
| 1448 | + $arch = 'FALSE'; |
|
| 1449 | + } |
|
| 1117 | 1450 | if (strpos($format[$key],'_callback')) { |
| 1118 | 1451 | $gSources[] = array('host' => $h, 'pass' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov,'noarchive' => $arch,'timezone' => $timezones[$key],'callback' => 'TRUE'); |
| 1119 | 1452 | } elseif ($h != '' || $name[$key] != '') { |
| 1120 | 1453 | $gSources[] = array('host' => $h, 'port' => $port[$key],'name' => $name[$key],'format' => $format[$key],'sourcestats' => $cov,'noarchive' => $arch,'timezone' => $timezones[$key],'callback' => 'FALSE'); |
| 1121 | 1454 | } |
| 1122 | - if ($format[$key] == 'airwhere') $forcepilots = true; |
|
| 1455 | + if ($format[$key] == 'airwhere') { |
|
| 1456 | + $forcepilots = true; |
|
| 1457 | + } |
|
| 1123 | 1458 | } |
| 1124 | 1459 | $settings = array_merge($settings,array('globalSources' => $gSources)); |
| 1125 | 1460 | |
@@ -1150,7 +1485,9 @@ discard block |
||
| 1150 | 1485 | $zoidistance = filter_input(INPUT_POST,'zoidistance',FILTER_SANITIZE_NUMBER_INT); |
| 1151 | 1486 | if ($zoilatitude != '' && $zoilongitude != '' && $zoidistance != '') { |
| 1152 | 1487 | $settings = array_merge($settings,array('globalDistanceIgnore' => array('latitude' => $zoilatitude,'longitude' => $zoilongitude,'distance' => $zoidistance))); |
| 1153 | - } else $settings = array_merge($settings,array('globalDistanceIgnore' => array())); |
|
| 1488 | + } else { |
|
| 1489 | + $settings = array_merge($settings,array('globalDistanceIgnore' => array())); |
|
| 1490 | + } |
|
| 1154 | 1491 | |
| 1155 | 1492 | $refresh = filter_input(INPUT_POST,'refresh',FILTER_SANITIZE_NUMBER_INT); |
| 1156 | 1493 | $settings = array_merge($settings,array('globalLiveInterval' => $refresh)); |
@@ -1189,7 +1526,9 @@ discard block |
||
| 1189 | 1526 | |
| 1190 | 1527 | // Create in settings.php keys not yet configurable if not already here |
| 1191 | 1528 | //if (!isset($globalImageBingKey)) $settings = array_merge($settings,array('globalImageBingKey' => '')); |
| 1192 | - if (!isset($globalDebug)) $settings = array_merge($settings,array('globalDebug' => 'TRUE')); |
|
| 1529 | + if (!isset($globalDebug)) { |
|
| 1530 | + $settings = array_merge($settings,array('globalDebug' => 'TRUE')); |
|
| 1531 | + } |
|
| 1193 | 1532 | |
| 1194 | 1533 | $resetyearstats = filter_input(INPUT_POST,'resetyearstats',FILTER_SANITIZE_STRING); |
| 1195 | 1534 | if ($resetyearstats == 'resetyearstats') { |
@@ -1226,37 +1565,56 @@ discard block |
||
| 1226 | 1565 | } |
| 1227 | 1566 | */ |
| 1228 | 1567 | $settings = array_merge($settings,array('globalFlightAware' => 'FALSE')); |
| 1229 | - if ($globalsbs == 'sbs') $settings = array_merge($settings,array('globalSBS1' => 'TRUE')); |
|
| 1230 | - else $settings = array_merge($settings,array('globalSBS1' => 'FALSE')); |
|
| 1231 | - if ($globalaprs == 'aprs') $settings = array_merge($settings,array('globalAPRS' => 'TRUE')); |
|
| 1232 | - else $settings = array_merge($settings,array('globalAPRS' => 'FALSE')); |
|
| 1568 | + if ($globalsbs == 'sbs') { |
|
| 1569 | + $settings = array_merge($settings,array('globalSBS1' => 'TRUE')); |
|
| 1570 | + } else { |
|
| 1571 | + $settings = array_merge($settings,array('globalSBS1' => 'FALSE')); |
|
| 1572 | + } |
|
| 1573 | + if ($globalaprs == 'aprs') { |
|
| 1574 | + $settings = array_merge($settings,array('globalAPRS' => 'TRUE')); |
|
| 1575 | + } else { |
|
| 1576 | + $settings = array_merge($settings,array('globalAPRS' => 'FALSE')); |
|
| 1577 | + } |
|
| 1233 | 1578 | $va = false; |
| 1234 | 1579 | if ($globalivao == 'ivao') { |
| 1235 | 1580 | $settings = array_merge($settings,array('globalIVAO' => 'TRUE')); |
| 1236 | 1581 | $va = true; |
| 1237 | - } else $settings = array_merge($settings,array('globalIVAO' => 'FALSE')); |
|
| 1582 | + } else { |
|
| 1583 | + $settings = array_merge($settings,array('globalIVAO' => 'FALSE')); |
|
| 1584 | + } |
|
| 1238 | 1585 | if ($globalvatsim == 'vatsim') { |
| 1239 | 1586 | $settings = array_merge($settings,array('globalVATSIM' => 'TRUE')); |
| 1240 | 1587 | $va = true; |
| 1241 | - } else $settings = array_merge($settings,array('globalVATSIM' => 'FALSE')); |
|
| 1588 | + } else { |
|
| 1589 | + $settings = array_merge($settings,array('globalVATSIM' => 'FALSE')); |
|
| 1590 | + } |
|
| 1242 | 1591 | if ($globalphpvms == 'phpvms') { |
| 1243 | 1592 | $settings = array_merge($settings,array('globalphpVMS' => 'TRUE')); |
| 1244 | 1593 | $va = true; |
| 1245 | - } else $settings = array_merge($settings,array('globalphpVMS' => 'FALSE')); |
|
| 1594 | + } else { |
|
| 1595 | + $settings = array_merge($settings,array('globalphpVMS' => 'FALSE')); |
|
| 1596 | + } |
|
| 1246 | 1597 | if ($globalvam == 'vam') { |
| 1247 | 1598 | $settings = array_merge($settings,array('globalVAM' => 'TRUE')); |
| 1248 | 1599 | $va = true; |
| 1249 | - } else $settings = array_merge($settings,array('globalVAM' => 'FALSE')); |
|
| 1600 | + } else { |
|
| 1601 | + $settings = array_merge($settings,array('globalVAM' => 'FALSE')); |
|
| 1602 | + } |
|
| 1250 | 1603 | if ($va) { |
| 1251 | 1604 | $settings = array_merge($settings,array('globalSchedulesFetch' => 'FALSE','globalTranslationFetch' => 'FALSE')); |
| 1252 | - } else $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE')); |
|
| 1605 | + } else { |
|
| 1606 | + $settings = array_merge($settings,array('globalSchedulesFetch' => 'TRUE','globalTranslationFetch' => 'TRUE')); |
|
| 1607 | + } |
|
| 1253 | 1608 | if ($globalva == 'va' || $va) { |
| 1254 | 1609 | $settings = array_merge($settings,array('globalVA' => 'TRUE')); |
| 1255 | 1610 | $settings = array_merge($settings,array('globalUsePilot' => 'TRUE','globalUseOwner' => 'FALSE')); |
| 1256 | 1611 | } else { |
| 1257 | 1612 | $settings = array_merge($settings,array('globalVA' => 'FALSE')); |
| 1258 | - if ($forcepilots) $settings = array_merge($settings,array('globalUsePilot' => 'TRUE','globalUseOwner' => 'FALSE')); |
|
| 1259 | - else $settings = array_merge($settings,array('globalUsePilot' => 'FALSE','globalUseOwner' => 'TRUE')); |
|
| 1613 | + if ($forcepilots) { |
|
| 1614 | + $settings = array_merge($settings,array('globalUsePilot' => 'TRUE','globalUseOwner' => 'FALSE')); |
|
| 1615 | + } else { |
|
| 1616 | + $settings = array_merge($settings,array('globalUsePilot' => 'FALSE','globalUseOwner' => 'TRUE')); |
|
| 1617 | + } |
|
| 1260 | 1618 | } |
| 1261 | 1619 | |
| 1262 | 1620 | |
@@ -1432,7 +1790,9 @@ discard block |
||
| 1432 | 1790 | $settings = array_merge($settings,array('globalNoAirlines' => 'FALSE')); |
| 1433 | 1791 | } |
| 1434 | 1792 | |
| 1435 | - if (!isset($globalTransaction)) $settings = array_merge($settings,array('globalTransaction' => 'TRUE')); |
|
| 1793 | + if (!isset($globalTransaction)) { |
|
| 1794 | + $settings = array_merge($settings,array('globalTransaction' => 'TRUE')); |
|
| 1795 | + } |
|
| 1436 | 1796 | |
| 1437 | 1797 | // Set some defaults values... |
| 1438 | 1798 | if (!isset($globalAircraftImageSources)) { |
@@ -1447,15 +1807,23 @@ discard block |
||
| 1447 | 1807 | |
| 1448 | 1808 | $settings = array_merge($settings,array('globalInstalled' => 'TRUE')); |
| 1449 | 1809 | |
| 1450 | - if ($error == '') settings::modify_settings($settings); |
|
| 1451 | - if ($error == '') settings::comment_settings($settings_comment); |
|
| 1810 | + if ($error == '') { |
|
| 1811 | + settings::modify_settings($settings); |
|
| 1812 | + } |
|
| 1813 | + if ($error == '') { |
|
| 1814 | + settings::comment_settings($settings_comment); |
|
| 1815 | + } |
|
| 1452 | 1816 | if ($error != '') { |
| 1453 | 1817 | print '<div class="info column">'.$error.'</div>'; |
| 1454 | 1818 | require('../footer.php'); |
| 1455 | 1819 | exit; |
| 1456 | 1820 | } else { |
| 1457 | - if (isset($_POST['waypoints']) && $_POST['waypoints'] == 'waypoints') $_SESSION['waypoints'] = 1; |
|
| 1458 | - if (isset($_POST['owner']) && $_POST['owner'] == 'owner') $_SESSION['owner'] = 1; |
|
| 1821 | + if (isset($_POST['waypoints']) && $_POST['waypoints'] == 'waypoints') { |
|
| 1822 | + $_SESSION['waypoints'] = 1; |
|
| 1823 | + } |
|
| 1824 | + if (isset($_POST['owner']) && $_POST['owner'] == 'owner') { |
|
| 1825 | + $_SESSION['owner'] = 1; |
|
| 1826 | + } |
|
| 1459 | 1827 | if (isset($_POST['createdb'])) { |
| 1460 | 1828 | $_SESSION['install'] = 'database_create'; |
| 1461 | 1829 | } else { |
@@ -1492,10 +1860,18 @@ discard block |
||
| 1492 | 1860 | $popw = false; |
| 1493 | 1861 | foreach ($_SESSION['done'] as $done) { |
| 1494 | 1862 | print '<li>'.$done.'....<strong>SUCCESS</strong></li>'; |
| 1495 | - if ($done == 'Create database') $pop = true; |
|
| 1496 | - if ($_SESSION['install'] == 'database_create') $pop = true; |
|
| 1497 | - if ($_SESSION['install'] == 'database_import') $popi = true; |
|
| 1498 | - if ($_SESSION['install'] == 'waypoints') $popw = true; |
|
| 1863 | + if ($done == 'Create database') { |
|
| 1864 | + $pop = true; |
|
| 1865 | + } |
|
| 1866 | + if ($_SESSION['install'] == 'database_create') { |
|
| 1867 | + $pop = true; |
|
| 1868 | + } |
|
| 1869 | + if ($_SESSION['install'] == 'database_import') { |
|
| 1870 | + $popi = true; |
|
| 1871 | + } |
|
| 1872 | + if ($_SESSION['install'] == 'waypoints') { |
|
| 1873 | + $popw = true; |
|
| 1874 | + } |
|
| 1499 | 1875 | } |
| 1500 | 1876 | if ($pop) { |
| 1501 | 1877 | sleep(5); |
@@ -1506,7 +1882,9 @@ discard block |
||
| 1506 | 1882 | } else if ($popw) { |
| 1507 | 1883 | sleep(5); |
| 1508 | 1884 | print '<li>Populate waypoints database....<img src="../images/loading.gif" /></li>'; |
| 1509 | - } else print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>'; |
|
| 1885 | + } else { |
|
| 1886 | + print '<li>Update schema if needed....<img src="../images/loading.gif" /></li>'; |
|
| 1887 | + } |
|
| 1510 | 1888 | print '</div></ul>'; |
| 1511 | 1889 | print '<div id="error"></div>'; |
| 1512 | 1890 | /* foreach ($_SESSION['done'] as $done) { |