Code

goFonQueueStrategy will be saved in correct format now
[gosa.git] / plugins / admin / systems / class_phoneGeneric.inc
index b400f0b2f339d12852323073819dfaaa079333ba..782fb9fa4eb12d0fc19157f4616416df5cb450fe 100644 (file)
@@ -85,15 +85,17 @@ class phoneGeneric extends plugin
     } else {
       $this->selected_categorie = 0;
     }
+
+    if($this->goFonDefaultIP!="dynamic"){
+      $this->goFonDefaultIP = "network";
+    }
+
     /* Save dn for later references */
     $this->orig_dn= $this->dn;
   }
 
   function execute()
   {
-  
     /* Do we represent a valid phone? */
     if (!$this->is_account && $this->parent == NULL){
       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
@@ -165,11 +167,11 @@ class phoneGeneric extends plugin
     $smarty->assign("bases", $this->config->idepartments);
 
     /* Create Arrays for samrty select boxes */
-    $smarty->assign("categories",     array("SIP - phones","IAX - phones","CAPI - phones"));
+    $smarty->assign("categories",     array("SIP","IAX","CAPI"));
     $smarty->assign("goFonTypes",     array("peer"      =>"peer"      ,"user"   =>"user"    ,"friend" =>"friend"));
     $smarty->assign("goFonDmtfModes", array("inband"    =>"inband"    ,"rfc2833"=>"rfc2833" ,"info"   =>"info"));
-    $smarty->assign("goFonAuths",     array("plaintext" =>"plaintext" ,"md5"    =>"md5"     ,"rsa"    =>"rsa"));
-    $smarty->assign("goFonTrunks",    array("yes" =>"yes"             ,"no"     =>"no"));
+    $smarty->assign("goFonAuths",     array("plaintext" =>"plaintext" ,"md5"    =>"md5"     /*,"rsa"    =>"rsa"*/));
+    $smarty->assign("goFonTrunks",    array("yes" =>_("yes") ,"no" => _("no")));
 
     /* deativate all fields that are not used by the specified type */
     foreach($this->attributes as $att){
@@ -189,7 +191,9 @@ class phoneGeneric extends plugin
       $smarty->assign($attr."ACL", chkacl($this->acl, $attr));
     }
     $smarty->assign("base_select", $this->base);
-    
+   
+    $smarty->assign("goFonDefaultIPs",array("dynamic"=>_("dynamic"),"network"=>_("Networksettings")));
     /* Show Asterisk for required attribute ipHostNumber and macAddress */
     $smarty->assign("staticAddress", "<font class=\"must\">*</font>");
         
@@ -202,6 +206,15 @@ class phoneGeneric extends plugin
   function remove_from_parent()
   {
     $ldap= $this->config->get_ldap_link();
+    $ldap->cd($this->config->current['BASE']);
+
+    $ldap->search ("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))", array("uid","cn"));
+    while ($attr =  $ldap->fetch()){
+      print_red(sprintf(_("Can't delete because there are user which are depending on this phone. One of them is user '%s'."),
+        ($attr['uid'][0]." - ".$attr['cn'][0])));
+      return;
+    }
+
     $ldap->rmdir($this->dn);
     show_ldap_error($ldap->get_error());
     $this->handle_post_events("remove");
@@ -239,18 +252,18 @@ class phoneGeneric extends plugin
     /* To check for valid ip*/
     $num="(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])";
 
-    if(in_array("goFonDefaultIP",$this->usedattrs[$this->selected_categorie])){
-      if (!preg_match("/^$num\\.$num\\.$num\\.$num$/", $this->goFonDefaultIP)){
-       $message[]= _("Wrong IP format in field goFonDefaultIP.");
-      }
-    }
+//    if(in_array("goFonDefaultIP",$this->usedattrs[$this->selected_categorie])){
+//      if (!preg_match("/^$num\\.$num\\.$num\\.$num$/", $this->goFonDefaultIP)){
+//       $message[]= _("Wrong IP format in field goFonDefaultIP.");
+//      }
+//    }
     
-    /* Check for valid number */
-    if(in_array("goFonDefaultIP",$this->usedattrs[$this->selected_categorie])){
-      if((strlen($this->goFonQualify))!=(strlen((int)($this->goFonQualify)))){
-        $message[]= _("The given value for goFonQualify is not a valid number.");
-      } 
-    }
+//    /* Check for valid number */
+//    if(in_array("goFonDefaultIP",$this->usedattrs[$this->selected_categorie])){
+//      if((strlen($this->goFonQualify))!=(strlen((int)($this->goFonQualify)))){
+//        $message[]= _("The given value for 'Response timeout' is not a valid number.");
+//      } 
+//    }
 
     /* must: cn, macAddress, ipHostNumber */
     if ($this->cn == "" && chkacl ($this->acl, "cn") == ""){
@@ -331,7 +344,11 @@ class phoneGeneric extends plugin
       }
       $this->attrs= $attrs;
     }
-    
+
+    if($this->goFonDefaultIP!="dynamic"){
+      $this->attrs['goFonDefaultIP'] = $this->ipHostNumber;
+    }    
+
     /* Write back to ldap */
     $ldap= $this->config->get_ldap_link();
     if ($this->orig_dn == 'new'){