Code

Updated NFS Shares.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Sep 2008 12:27:52 +0000 (12:27 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Sep 2008 12:27:52 +0000 (12:27 +0000)
-Share type must be set, if we do not have the acls to set the type, abort saving -> check()

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12449 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/admin/systems/services/nfs/class_servNfs.inc

index f2411ac9caac4d68a09cedf41ac6e6ba2cf07a37..147cc912ca4569a3cff3c6406952c4ecd2d008ba 100644 (file)
@@ -12,7 +12,7 @@ class servnfs extends plugin
   var $description   ="";  // description
   var $type          ="";  // Type FS/Samba/NCP
   var $charset       ="";  // charset
-  var $host       ="";  // hostname
+  var $host          ="";  // hostname
   var $types         =array();  // Array Types NFS/Samba/NCP/netatalk
   var $charsets      =array();  // Array with charsets
   var $path          ="";  // Path
@@ -182,6 +182,10 @@ class servnfs extends plugin
       $message[]= _("'Path / Volume' must contain at least one '/'!");
     }
 
+    if(!in_array($this->type,$this->types)){
+      $message[]= msgPool::required(_("Type"));
+    }
+
     // only 0-9a-z
     if(!$this->is_edit){
       if(empty($this->name)){