Exemplo n.º 1
0
 /**
  * @ignore 
  */
 protected function fetchNodeList()
 {
     $this->nodeList = new ArrayObject();
     $cl = $this->server->getChannelList();
     foreach ($cl as $val) {
         if ($val['parent'] == $this->id) {
             $this->nodeList[] = $val;
         }
     }
     $pl = $this->server->getClientList();
     foreach ($pl as $val) {
         if ($val['c_id'] == $this->id) {
             $this->nodeList[] = $val;
         }
     }
 }