burst only channels we've users in
[PHP-P10.git] / Uplink / P10_Server.class.php
index 207b66379147dc2ace2fcd211470657b99163b52..ba9200e24c796905eecd53aa0504f9ab35b38aae 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 getServerByName($name) {
+       public static function getServerByName($name) {
                $name = strtolower($name);
                foreach(self::$static_servers as $server) {
                        if(strtolower($server->getName()) == $name) {
@@ -87,6 +87,14 @@ class P10_Server {
                return NULL;
        }
        
+       public static function getServerCount() {
+               return count(self::$static_servers);
+       }
+       
+       public static function getServers() {
+               return self::$static_servers;
+       }
+       
        
        private $name;
        private $numeric;
@@ -108,8 +116,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);
                        }
@@ -117,7 +127,7 @@ class P10_Server {
                        unset(self::$static_servers[$this->numeric]);
                }
                foreach($this->servers as $server) {
-                       $server->disconnectServer();
+                       $server->disconnectServer($eventHandler);
                }
        }
        
@@ -175,6 +185,10 @@ class P10_Server {
        public function getUsers() {
                return $this->users;
        }
+       
+       public function getUserCount() {
+               return count($this->users);
+       }
 }
 
 ?>
\ No newline at end of file