Dashboard 2 updates for xlxd 2.x.x

This commit is contained in:
Luiz Amaral 2017-08-27 18:09:08 -03:00
parent e7b9123409
commit a248c0ef39
9 changed files with 404 additions and 214 deletions

View file

@ -10,8 +10,9 @@ class Node {
private $LastHeardTime;
private $Suffix;
private $Prefix;
private $RandomID;
public function __construct($Callsign, $IP, $LinkedModule, $Protocol, $ConnectTime, $LastHeardTime) {
public function __construct($Callsign, $IP, $LinkedModule, $Protocol, $ConnectTime, $LastHeardTime, $RandomID) {
$this->IP = $IP;
@ -34,8 +35,8 @@ class Node {
$this->Prefix = "";
}
$this->LinkedModule = trim($LinkedModule);
$this->LinkedModule = trim($LinkedModule);
$this->RandomID = $RandomID;
}
public function GetFullCallsign() { return $this->FullCallsign; }
@ -47,6 +48,8 @@ class Node {
public function GetLastHeardTime() { return $this->LastHeardTime; }
public function GetSuffix() { return $this->Suffix; }
public function GetPrefix() { return $this->Prefix; }
public function GetRandomID() { return $this->RandomID; }
}
?>