Code

Added function check()
[gosa.git] / plugins / personal / connectivity / class_proxyAccount.inc
index ff4c45d37b6b891640d7350b1174fb6f41858b55..5e97daa8dd5be8ae48baa406007f46716eade90e 100644 (file)
@@ -48,14 +48,8 @@ class proxyAccount extends plugin
     foreach (array("F", "T", "B", "N") as $val){
       if (is_integer(strpos($this->gosaProxyAcctFlags, "$val"))) {
         $smarty->assign("filter$val", "checked");
-
-        // Create state variable for checkbox (Used in proxy.tpl)
-        $smarty->assign($val."state", "");
       } else {
         $smarty->assign("filter$val", "");
-        
-        // Create state variable for checkbox (Used in proxy.tpl)
-        $smarty->assign($val."state", "disabled");
       }
     }
 
@@ -115,7 +109,6 @@ class proxyAccount extends plugin
     $this->handle_post_events("remove");
   }
 
-
   /* Check values */
   function check()
   {
@@ -125,17 +118,17 @@ class proxyAccount extends plugin
     if ($this->is_account){
       if (isset($_POST["quota_size"])){
         if ($_POST["quota_size"] == ""){
-          $message[]= _("Value specified as 'Quota Size' is empty.");
+          $message[]= _("Numerical value for Quota Setting is empty.");
         }
         else if ($_POST["quota_size"] <= 0){
-          $message[]= _("Value specified as 'Quota Size' is not valid.");
+          $message[]= _("Numerical value for Quota Setting is not valid.");
         }
       }
     }
-    
+
     return $message;
   }
-  
+
   /* Save data to object */
   function save_object()
   {
@@ -180,17 +173,14 @@ class proxyAccount extends plugin
       /* Save quota values */
       if (chkacl ($this->acl, "gosaProxyQuota") == ""){
         $old= $this->gosaProxyQuota;
-        if(isset($_POST["quota_size"]) && isset($_POST["quota_unit"])){
-          $this->gosaProxyQuota= $_POST["quota_size"].$_POST["quota_unit"];
-        }
+        $this->gosaProxyQuota= $_POST["quota_size"].$_POST["quota_unit"];
         $this->is_modified= ($old != $this->gosaProxyQuota)?TRUE:$this->is_modified;
         $old= $this->gosaProxyQuotaPeriod;
-        if(isset($_POST["gosaProxyQuotaPeriod"])){
-          $this->gosaProxyQuotaPeriod = $_POST["gosaProxyQuotaPeriod"];
-        }
+        $this->gosaProxyQuotaPeriod = $_POST["gosaProxyQuotaPeriod"];
         $this->is_modified= ($old != $this->gosaProxyQuotaPeriod)?TRUE:$this->is_modified;
       }
     }
+
   }