mirror of
https://github.com/LX3JL/xlxd.git
synced 2026-04-07 07:23:44 +00:00
Dashboard 2 updates for xlxd 2.x.x
This commit is contained in:
parent
e7b9123409
commit
a248c0ef39
9 changed files with 404 additions and 214 deletions
|
|
@ -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; }
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue