-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All settings available in settings.php
- Loading branch information
Showing
15 changed files
with
179 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This file is part of FlightAirmap. | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once('require/class.Connection.php'); | ||
require_once('require/class.Common.php'); | ||
if (isset($globalProtect) && $globalProtect) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for all common functions | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/libs/simple_html_dom.php'); | ||
require_once(dirname(__FILE__).'/libs/uagent/uagent.php'); | ||
require_once(dirname(__FILE__).'/settings.php'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for DB connection | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/settings.php'); | ||
|
||
class Connection{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for marine archive data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
class MarineArchive { | ||
public $global_query = "SELECT marine_archive.* FROM marine_archive"; | ||
public $db; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used to import marine data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/class.Connection.php'); | ||
require_once(dirname(__FILE__).'/class.AIS.php'); | ||
require_once(dirname(__FILE__).'/class.Marine.php'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for marine live data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
//$global_query = "SELECT marine_live.* FROM marine_live"; | ||
|
||
class MarineLive { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for satellite data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/class.Connection.php'); | ||
require_once(dirname(__FILE__).'/libs/Predict/Predict.php'); | ||
require_once(dirname(__FILE__).'/libs/Predict/Predict/Sat.php'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used to import spotter data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/class.Connection.php'); | ||
require_once(dirname(__FILE__).'/class.Spotter.php'); | ||
require_once(dirname(__FILE__).'/class.SpotterLive.php'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used to for trackers data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/class.Scheduler.php'); | ||
require_once(dirname(__FILE__).'/class.ACARS.php'); | ||
require_once(dirname(__FILE__).'/class.Image.php'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for trackers archive data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
class TrackerArchive { | ||
public $global_query = "SELECT tracker_archive.* FROM tracker_archive"; | ||
public $db; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used to import trackers data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/class.Connection.php'); | ||
require_once(dirname(__FILE__).'/class.Tracker.php'); | ||
require_once(dirname(__FILE__).'/class.TrackerLive.php'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used for trackers live data | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
//$global_query = "SELECT tracker_live.* FROM tracker_live"; | ||
|
||
class TrackerLive { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
<?php | ||
/** | ||
* This class is part of FlightAirmap. It's used to get weather data and create clouds | ||
* | ||
* Copyright (c) Ycarus (Yannick Chabanois) <[email protected]> | ||
* Licensed under AGPL license. | ||
* For more information see: https://www.flightairmap.com/ | ||
*/ | ||
require_once(dirname(__FILE__).'/class.Common.php'); | ||
class Weather { | ||
public function buildcloudlayer($metar) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
User-agent: * | ||
Crawl-Delay: 20 | ||
Disallow: /images | ||
Disallow: /install | ||
Disallow: /db | ||
Disallow: /data | ||
Disallow: /require |