mirror of
				https://github.com/ShaYmez/xlxd.git
				synced 2025-10-31 13:01:05 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class Node {
 | |
| 
 | |
|    private $Callsign;
 | |
|    private $IP;
 | |
|    private $LinkedModule;
 | |
|    private $Protocol;
 | |
|    private $ConnectTime;
 | |
|    private $LastHeardTime;
 | |
|    private $Suffix;
 | |
|    private $Prefix;
 | |
|    private $RandomID;
 | |
| 
 | |
|    public function __construct($Callsign, $IP, $LinkedModule, $Protocol, $ConnectTime, $LastHeardTime, $RandomID) {
 | |
| 
 | |
|       $this->IP            = $IP;
 | |
| 
 | |
|       $this->Protocol      = $Protocol;
 | |
|       $this->ConnectTime   = ParseTime($ConnectTime);
 | |
|       $this->LastHeardTime = ParseTime($LastHeardTime);
 | |
|    
 | |
|       $this->FullCallsign  = trim(str_replace("   ", "-", $Callsign));
 | |
|       $this->FullCallsign  = str_replace("  ", "-", $this->FullCallsign);
 | |
|       $this->FullCallsign  = str_replace(" ", "-", $this->FullCallsign); 
 | |
|       
 | |
|       if (strpos($Callsign, " ") !== false) {
 | |
|          $this->Callsign      = trim(substr($Callsign, 0, strpos($Callsign, " ")));
 | |
|          $this->Suffix        = trim(substr($Callsign, strpos($Callsign, " "), strlen($Callsign)));
 | |
|          $this->Prefix        = strtoupper(trim(substr($Callsign, 0, 3)));
 | |
|       }
 | |
|       else {
 | |
|          $this->Callsign      = trim($Callsign);
 | |
|          $this->Suffix        = "";
 | |
|          $this->Prefix        = "";
 | |
|       }
 | |
| 
 | |
|       $this->LinkedModule     = trim($LinkedModule);
 | |
|       $this->RandomID         = $RandomID;
 | |
|    }
 | |
| 
 | |
|    public function GetFullCallsign()         { return $this->FullCallsign;   }
 | |
|    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;         }
 | |
|    public function GetPrefix()               { return $this->Prefix;         }
 | |
|    public function GetRandomID()             { return $this->RandomID;       }
 | |
|    
 | |
| }
 | |
| 
 | |
| ?>
 |