implemented EventHandler
[PHP-P10.git] / Uplink / P10_Server.class.php
index f36bbeae3cc1c4092e251e0301f5e88ee3603be4..465fa3c00d97a830779a26981724ee3dda3f7b2d 100644 (file)
 class P10_Server {
        private static $static_servers = array();
        
-       public static getServerByNum($numeric) {
+       public static function getServerByNum($numeric) {
                if(array_key_exists($numeric, self::$static_servers)) {
                        return self::$static_servers[$numeric];
                }
                return NULL;
        }
        
+       public static function getServerByName($name) {
+               $name = strtolower($name);
+               foreach(self::$static_servers as $server) {
+                       if(strtolower($server->getName()) == $name) {
+                               return $server;
+                       }
+               }
+               return NULL;
+       }
+       
        
        private $name;
        private $numeric;
@@ -98,8 +108,10 @@ class P10_Server {
                self::$static_servers[$numeric] = $this;
        }
        
-       public function disconnectServer($linked_only = false) {
+       public function disconnectServer($eventHandler, $linked_only = false) {
                if(!$linked_only) {
+                       if($eventHandler)
+                               $eventHandler->event_squit($this);
                        if($this->parent_server) {
                                $this->parent_server->delServer($this);
                        }
@@ -107,7 +119,7 @@ class P10_Server {
                        unset(self::$static_servers[$this->numeric]);
                }
                foreach($this->servers as $server) {
-                       $server->disconnectServer();
+                       $server->disconnectServer($eventHandler);
                }
        }