2016-01-01 07:42:52 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Node {
|
2016-02-11 12:51:12 -05:00
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
private $Callsign;
|
|
|
|
private $IP;
|
|
|
|
private $LinkedModule;
|
|
|
|
private $Protocol;
|
|
|
|
private $ConnectTime;
|
|
|
|
private $LastHeardTime;
|
|
|
|
private $Suffix;
|
2016-03-01 03:28:55 -05:00
|
|
|
private $Prefix;
|
2016-02-11 12:51:12 -05:00
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
public function __construct($Callsign, $IP, $LinkedModule, $Protocol, $ConnectTime, $LastHeardTime) {
|
2016-02-11 12:51:12 -05:00
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
$this->IP = $IP;
|
2016-02-11 12:51:12 -05:00
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
$this->Protocol = $Protocol;
|
|
|
|
$this->ConnectTime = ParseTime($ConnectTime);
|
|
|
|
$this->LastHeardTime = ParseTime($LastHeardTime);
|
2016-02-11 12:51:12 -05:00
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
if (strpos($Callsign, " ") !== false) {
|
|
|
|
$this->Callsign = trim(substr($Callsign, 0, strpos($Callsign, " ")));
|
|
|
|
$this->Suffix = trim(substr($Callsign, strpos($Callsign, " "), strlen($Callsign)));
|
2016-03-01 03:28:55 -05:00
|
|
|
$this->Prefix = strtoupper(trim(substr($Callsign, 0, 3)));
|
2016-01-01 07:42:52 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->Callsign = trim($Callsign);
|
|
|
|
$this->Suffix = "";
|
2016-03-01 03:28:55 -05:00
|
|
|
$this->Prefix = "";
|
2016-01-01 07:42:52 -05:00
|
|
|
}
|
2016-02-11 12:51:12 -05:00
|
|
|
|
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
$this->LinkedModule = trim($LinkedModule);
|
|
|
|
}
|
2016-02-11 12:51:12 -05:00
|
|
|
|
2016-01-01 07:42:52 -05:00
|
|
|
|
|
|
|
public function GetCallsign() { return $this->Callsign; }
|
|
|
|
public function GetIP() { return $this->IP; }
|
|
|
|
public function GetLinkedModule() { return $this->LinkedModule; }
|
|
|
|
public function GetProtocol() { return $this->Protocol; }
|
|
|
|
public function GetConnectTime() { return $this->ConnectTime; }
|
|
|
|
public function GetLastHeardTime() { return $this->LastHeardTime; }
|
|
|
|
public function GetSuffix() { return $this->Suffix; }
|
2016-03-01 03:28:55 -05:00
|
|
|
public function GetPrefix() { return $this->Prefix; }
|
2016-01-01 07:42:52 -05:00
|
|
|
}
|
|
|
|
|
2016-02-11 12:51:12 -05:00
|
|
|
?>
|