Code

Corrected kioskpath parsing
[gosa.git] / plugins / personal / environment / class_environment.inc
index 9751bede44350996afa6ef6e3c5af90e66b4f9f5..6ec5f58fce0dafe4dca5246c2ea4080180bf1aef 100644 (file)
@@ -12,7 +12,12 @@ class environment extends plugin
   var $plHeadline           = "Environment";
   var $plDescription        = "This does something";
   var $dialog               = false;    // Indicates that we are currently editing in an seperate dialog
+  
+  var $in_dialog            = false;
+  var $uid                  = "";
 
+  var $is_group             = false;
+  
   /* Attribute definition
    */
 
@@ -23,7 +28,7 @@ class environment extends plugin
   var $gotoProfileFlags   = "";     // Flags enabled  ? only used to set ACL and save 
   var $gotoProfileFlag_C  = "";     // Flag is set to C if we have the profile caching fucntion enabled 
   
-  var $gotoXResolution    = "";     // The selected resolution eg: 1024x768
+  var $gotoXResolution    = "1024x768";     // The selected resolution eg: 1024x768
   var $gotoXResolutions   = array();// Contains all available resolutions for this account
   var $gotoProfileFlag_L  = "";     // Flag is set to L to enable runtime resolution change 
   var $gotoProfileQuota   = "";     // User Quota Settings
@@ -45,6 +50,7 @@ class environment extends plugin
   /* Kiosk profile */
   var $gotoKioskProfile   = "";     // The selected Kiosk Profile
   var $gotoKioskProfiles  = array();// All available Kiosk profiles
+  VAR $newKioskProfiles   = array();
 
   /* Hotplug Devices */
   var $gotoHotplugDevice  = "";     // Selected hotplug
@@ -61,25 +67,36 @@ class environment extends plugin
                                     "gotoKioskProfile","gotoKioskProfiles",
                                     "gotoHotplugDevice","gotoHotplugDevices");
   var $objectclasses      = array("gotoEnvironment"); // Specifies the objectClass which contains the attributes edited here 
+  var $cn;
 
   function environment ($config, $dn= NULL)
   {
     plugin::plugin ($config, $dn);
 
+   
+
+    if((isset($this->attrs['cn'][0]))&&(!isset($this->attrs['uid'][0]))){
+      $suffix="Group";
+      $this->uid          = $this->attrs['cn'][0];
+      $this->attrs['uid'] = $this->attrs['cn'][0];
+    }else{
+      $suffix="User";
+    }
+
     /* Get all Printer assignments */
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($this->config->current['BASE']);
-    $ldap->search("(&(objectClass=gotoPrinter)(gotoUserPrinter=".$this->uid."))",array("*"));
+    $ldap->search("(&(objectClass=gotoPrinter)(goto".$suffix."Printer=".$this->uid."))",array("*"));
     while($printer = $ldap->fetch()){
       $this->gotoPrinters[$printer['cn'][0]]=$printer;
       $this->gotoPrinters[$printer['cn'][0]]['mode']="user";
     }
-    $ldap->search("(&(objectClass=gotoPrinter)(gotoAdminPrinter=".$this->uid."))",array("*"));
+    $ldap->search("(&(objectClass=gotoPrinter)(goto".$suffix."AdminPrinter=".$this->uid."))",array("*"));
     while($printer = $ldap->fetch()){
       $this->gotoPrinters[$printer['cn'][0]]=$printer;
       $this->gotoPrinters[$printer['cn'][0]]['mode']="admin";
     }
-    
+   
     /* prepare hotplugs */
     if((isset($this->attrs['gotoHotplugDevice']))&&(is_array($this->attrs['gotoHotplugDevice']))){
       unset($this->attrs['gotoHotplugDevice']['count']);
@@ -93,6 +110,30 @@ class environment extends plugin
       }
     }
     
+    /* prepare LogonScripts */
+    if((isset($this->attrs['gotoLogonScript']))&&(is_array($this->attrs['gotoLogonScript']))){
+      unset($this->attrs['gotoLogonScript']['count']);
+      foreach($this->attrs['gotoLogonScript'] as $device){
+        $tmp = $tmp2 = array();
+        $tmp = split("\|",$device);
+        $tmp2['LogonName']        = $tmp[0]; 
+        $tmp2['LogonPriority']    = $tmp[2]; 
+        if(preg_match("/O/i",$tmp[1])){
+          $tmp2['LogonOverload'] = "O";
+        }else{
+          $tmp2['LogonOverload'] = "";
+        }
+        if(preg_match("/L/i",$tmp[1])){
+          $tmp2['LogonLast'] = "L";
+        }else{
+          $tmp2['LogonLast'] = "";
+        }
+        $tmp2['LogonData']        = base64_decode($tmp[3]); 
+        $tmp2['LogonDescription'] = $tmp[4];
+        $this->gotoLogonScripts[$tmp[0]]=$tmp2;
+      }
+    }
+    
     /* Prepare Shares */
     if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
       unset($this->attrs['gotoShare']['count']);
@@ -100,7 +141,7 @@ class environment extends plugin
         $tmp = $tmp2 = array();
         $tmp = split("\|",$share);
         $tmp2['name']      =$tmp[0];
-        $tmp2['mountPoint']=$tmp[1];
+        $tmp2['mountPoint']=base64_decode($tmp[1]);
         $this->gotoShares[$tmp[0]]=$tmp2;
       }
     }
@@ -117,6 +158,12 @@ class environment extends plugin
       $this->useProfile = false;
     }
 
+    /* Set to group environment if we editing a group */
+    if(!isset($this->parent)){
+      $this->is_group = true;
+    }
+
+
   }
 
   function execute()
@@ -128,9 +175,12 @@ class environment extends plugin
        All these tab management is done here
     */
 
-    // 1. Account disabled . Editing from usermenu
+    /* Working from Usermenu an the Account is currently disbled
+     * this->parent :  is only set if we are working in a list of tabs
+     * is_account   :  is only true if the needed objectClass is given
+    */
     if((!isset($this->parent))&&(!$this->is_account)){
-      /* We are currently editing this tab from usermenu, but htis account is not enabled */
+      /* We are currently editing this tab from usermenu, but this account is not enabled */
       $smarty->assign("is_account",$this->is_account);
       /* Load template */
       $display .= $smarty->fetch(get_template_path('environment.tpl', TRUE));
@@ -138,29 +188,75 @@ class environment extends plugin
       $display .= back_to_main(); 
       /* Display our message to the user */
       return $display;
+    
+
+    /* We are currently editing from group tabs, because 
+     * $this->parent is set
+     * posixAccount is not set, so we are not in usertabs.
+     */
+    }elseif((isset($this->parent))&&(!isset($this->parent->by_object['posixAccount']))){
+      $smarty->assign("is_account","true");
+      $this->is_group     = true;
+      $this->uid          = $this->cn;
+      $this->attrs['uid'] = $this->cn;
 
-    // Account is enabled
+      /* Change state if needed */
+      if (isset($_POST['modify_state'])){
+        $this->is_account= !$this->is_account;
+      }
+
+      /* Group Dialog with enabled environment options */
+      if ($this->is_account){
+        $display= $this->show_header(_("Remove environment extension"),
+            _("Environment extension enabled. You can disable it by clicking below."));
+      } else {
+  
+      /* Environment is disabled 
+         If theres is no posixAccount enabled, you won't be able to enable 
+         environment extensions
+       */
+        if((isset($this->attrs['objectClass']))&&((in_array("posixAccount",$this->attrs['objectClass'])))){
+          // 4. There is a PosixAccount
+          $display= $this->show_header(_("Add environment extension"),
+              _("Environment extension disabled. You can enable it by clicking below."));
+          return $display;
+        }else{
+          // 4. There is no PosixAccount
+          $display= $this->show_header(_("Add environment extension"),
+              _("Environment extension disabled. You have to setup a posix account before you can enable this feature."));
+          return $display;
+        }
+      }
     }else{
-      /* Tell smarty that this accoutn is enabled */
+      /* Editing from Usermenu 
+       *  Tell smarty that this accoutn is enabled 
+       */
       $smarty->assign("is_account","true");
 
       /* Do we need to flip is_account state? */
       if (isset($_POST['modify_state'])){
         $this->is_account= !$this->is_account;
       }
-      if(!isset($this->parent)){
-          // 3. ? Account Enabled . Editing from usermenu        
 
-      }else{
+      if(isset($this->parent)){
         // 3. Account enabled . Editing from adminmenu
         if ($this->is_account){
           $display= $this->show_header(_("Remove environment extension"),
-              _("This server has environment extension enabled. You can disable it by clicking below."));
+              _("Environment extension enabled. You can disable it by clicking below."));
         } else {
-        // 4. Account disabled . Editing from adminmenu
-          $display= $this->show_header(_("Add environment extension"),
-              _("This server has environment extension disabled. You can enable it by clicking below."));
-          return $display;
+          if((isset($this->attrs['objectClass']))
+                &&((in_array("posixAccount",$this->attrs['objectClass'])))
+                  ||($this->parent->by_object['posixAccount']->is_account==true)){
+            // 4. There is a PosixAccount
+            $display= $this->show_header(_("Add environment extension"),
+                _("Environment extension disabled. You can enable it by clicking below."));
+            return $display;
+          }else{
+            // 4. There is a PosixAccount
+            $display= $this->show_header(_("Add environment extension"),
+                _("Environment extension disabled. You have to setup a posix account before you can enable this feature."),TRUE,TRUE);
+            return $display;
+          }
         }
       }
     }
@@ -188,7 +284,14 @@ class environment extends plugin
       }
  
     }
-  
+    if($this->acl != "#none#"){
+      $smarty->assign("useProfileACL","");
+    }else{
+      $smarty->assign("gotoProfileFlag_CACL"," disabled ");
+      $smarty->assign("gotoProfileServer"," disabled ");
+    }
+
     /* HANDLE Profile Settings here 
      * Assign available Quota and resolution settings
      * Get all available profile server
@@ -205,43 +308,65 @@ class environment extends plugin
     }
 
     $this->gotoXResolutions = array("640x480","800x600","1024x768","1280x768","1280x1024");
-    $this->gotoProfileServers = array("none","none1");
+    $this->gotoProfileServers =$this->getShareServerList() ;
 
     $smarty->assign("gotoXResolutions",$this->gotoXResolutions);
     $smarty->assign("gotoProfileServers",$this->gotoProfileServers);
+    $smarty->assign("gotoProfileServerKeys",array_flip($this->gotoProfileServers));
 
     /* Handle kiosk profiles 
      * Read available from filesystem
      * Open management if post is transmitted
      */
-    $tmp = new kioskManagementDialog($this->config,$this->dn);
-    $list = $tmp->getKioskProfiles();
-
-    $smarty->assign("gotoKioskProfiles",$list);
-    $smarty->assign("gotoKioskProfileKeys",array_flip($list));
 
     /* Open Management Dialog */
     if(isset($_POST['KioskManagementDialog'])){
-      $this->dialog = new kioskManagementDialog($this->config,$this->dn); 
+      $this->dialog = new kioskManagementDialog($this->config,$this->dn,$this->newKioskProfiles); 
+      $this->dialog->parent= $this;
       $this->is_dialog = true;
     }
 
     /* Save */
     if(isset($_POST['KioskClose'])){
+      $this->newKioskProfiles = array_merge($this->newKioskProfiles,$this->dialog->save());
+  
       unset($this->dialog);
       $this->dialog=NULL;
       $this->is_dialog = false;
     }
+    $tmp = new kioskManagementDialog($this->config,$this->dn);
+    $list = $tmp->getKioskProfiles($this->newKioskProfiles);
+
+    $smarty->assign("gotoKioskProfiles",$list);
+    $smarty->assign("gotoKioskProfileKeys",array_flip($list));
 
     /* Logonscript Management
      * Get available LogonScripts (possibly grey out (or mark) these script that are defined for the group) 
      * Perform add Delete edit Posts 
      */
 
-    $this->gotoLogonScripts = array("asdf"=>"one","aaaa"=>"two","121"=>"3");
-  
-    $smarty->assign("gotoLogonScripts",$this->gotoLogonScripts);
-    $smarty->assign("gotoLogonScriptKeys",array_flip($this->gotoLogonScripts));
+    /* Dialog Save */
+    if(isset($_POST['LogonSave'])){
+      $this->dialog->save_object();
+      if(count($this->dialog->check())!=0){
+        foreach($this->dialog->check() as $msg){
+          print_red($msg);
+        }
+      }else{
+        $tmp = $this->dialog->save();
+        unset($this->dialog);
+        $this->dialog=NULL;
+        $this->is_dialog=false;
+        $this->gotoLogonScripts[$tmp['LogonName']]=$tmp; 
+      }
+    }
+    
+    /* Dialog Quit without saving */
+    if(isset($_POST['LogonCancel'])){
+      $this->is_dialog= false;
+      unset($this->dialog);
+      $this->dialog= NULL;
+    }
    
     /* Check Edit Del New Posts for a selected LogonScript */ 
     if(isset($_POST['gotoLogonScriptNew'])||isset($_POST['gotoLogonScriptEdit'])||isset($_POST['gotoLogonScriptDel'])){
@@ -250,15 +375,15 @@ class environment extends plugin
        * In this case we create a new Logon Script.
        */
       if(isset($_POST['gotoLogonScriptNew'])){
-        print "Adding ".$is_entry;
+        $this->is_dialog = true;
+        $this->dialog = new logonManagementDialog($this->config,$this->dn);
       }
 
       /* If we receive a Delete request and there is a Script selected in the selectbox, delete this one.
        * We only can delete if there is an entry selected.
        */
       if((isset($_POST['gotoLogonScriptDel']))&&(isset($_POST['gotoLogonScript']))){
-        $is_entry = $this->gotoLogonScripts[$_POST['gotoLogonScript']];
-        print "Deleting ".$is_entry;
+        unset($this->gotoLogonScripts[$_POST['gotoLogonScript']]);
       }
       
       /* In this case we want to edit an existing entry, we open a new Dialog to allow editing.
@@ -266,10 +391,15 @@ class environment extends plugin
        */
       if((isset($_POST['gotoLogonScriptEdit']))&&(isset($_POST['gotoLogonScript']))){
         $is_entry = $this->gotoLogonScripts[$_POST['gotoLogonScript']];
-        print "Editing ".$is_entry;
+        $this->is_dialog = true;
+        $this->dialog = new logonManagementDialog($this->config,$this->dn,$is_entry);
       }
     }
-    
+     
+    /* Append List to smarty*/
+    $smarty->assign("gotoLogonScripts",   $this->printOutLogonScripts());
+    $smarty->assign("gotoLogonScriptKeys",array_flip($this->printOutLogonScripts()));
+
     /* In this section server shares will be defined 
      * A user can select one of the given shares and a mount point
      *  and attach this combination to his setup.
@@ -286,8 +416,8 @@ class environment extends plugin
      */
     if(isset($_POST['gotoShareAdd'])){
       /* We assign a share to this user, if we don't know where to mount the share */
-      if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))){
-        print_red("You must specify a valid mount point.");
+      if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
+        print_red(_("You must specify a valid mount point."));
       }else{
         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
         $s_mount = $_POST['gotoShareMountPoint'];
@@ -420,7 +550,18 @@ class environment extends plugin
       $this->dialog->save_object();
       return ($this->dialog->execute());
     }
+    if($this->acl != "#none#"){
+      $smarty->assign("useProfileACL","");
+    }else{
+      $smarty->assign("gotoProfileFlag_CACL"," disabled ");
+      $smarty->assign("gotoProfileServerACL"," disabled ");
+    }
+
+    if(!$this->useProfile){
+      $smarty->assign("gotoProfileFlag_CACL"," disabled ");
+      $smarty->assign("gotoProfileServerACL"," disabled ");
+    }
+
     /* Als smarty vars are set. Get smarty template and generate output */
     $display.= $smarty->fetch(get_template_path('environment.tpl', TRUE,dirname(__FILE__)));
     
@@ -471,7 +612,7 @@ class environment extends plugin
     if(isset($_POST['iamposted'])){
       plugin::save_object();
       foreach($this->attributes as $s_attr){
-        if(in_array($s_attr,array("gotoShares","gotoHotplugDevices","gotoPrinters"))) continue;
+        if(in_array($s_attr,array("gotoShares","gotoHotplugDevices","gotoPrinters","gotoLogonScripts","uid"))) continue;
         if(isset($_POST[$s_attr])){
           $this->$s_attr = $_POST[$s_attr];
         }else{
@@ -486,6 +627,18 @@ class environment extends plugin
   function check()
   {
     $message= array();
+  
+    if(preg_match("/[^0-9]/",$this->gotoProfileQuota)) {
+      $message[]=_("Please set a valid profile quota size.");
+    } 
+    if(!isset($this->attrs['objectClass'])){
+      $this->attrs['objectClass']=array();
+    } 
+    if(!$this->is_group){
+      if((!((in_array("posixAccount",$this->attrs['objectClass']))||($this->parent->by_object['posixAccount']->is_account==true)))&&(!$this->is_group)){
+        $message[]=(_("You need to setup a valid posix extension in order to enable evironment features."));  
+      }
+    }
     return ($message);
   }
 
@@ -497,7 +650,21 @@ class environment extends plugin
     $ldap= $this->config->get_ldap_link();
 
     $realyUsedAttrs= array();
-    
+
+
+    $path = search_config($this->config->data,"environment", "KIOSKPATH"); 
+    /* Creating Kiosk Profiles */
+    foreach($this->newKioskProfiles as $file){
+      $contents = $file['contents'];
+      $fp = @fopen($path."/".$file['name'],"w");
+      if(!$fp){
+        print_red(_("Can't save new kiosk profiles, possibly permission denied for folder")." : ",$path);
+      }else{
+        fwrite($fp,$contents,strlen($contents));
+      }
+      @unlink($file['tmp_name']);
+    }
     /* Save already used objectClasses */
     $ocs        = $this->attrs['objectClass'];
     unset($ocs['count']);
@@ -511,6 +678,65 @@ class environment extends plugin
 
 
     /* Save usersettings to Printer */
+
+    if(chkacl($this->acl,"gotoPrinter")!=""){
+      $this->gotoPrinters = array();
+    }  
+    
+    if($this->is_group){
+      $s_suffix = "Group";
+    }else{
+      $s_suffix = "User";
+    }
+  
+
+    if(count($this->gotoPrinters)==0){
+      $ldap->search("(&(objectClass=gotoPrinter)(|(goto".$s_suffix."Printer=".$this->uid.")(goto".$s_suffix."AdminPrinter=".$this->uid.")))",array("*"));
+      while($attr = $ldap->fetch()){
+      
+        foreach($attr['goto'.$s_suffix.'Printer'] as $key => $user){
+          if($this->uid==$user){
+            unset($attr['goto'.$s_suffix.'Printer'][$key]);
+          }
+        }    
+
+        foreach($attr['goto'.$s_suffix.'AdminPrinter'] as $key => $user){
+          if($this->uid==$user){
+            unset($attr['goto'.$s_suffix.'AdminPrinter'][$key]);
+          }
+        }    
+
+        $attrs_used = array();
+        foreach($attr as $key=>$val){
+          if((!is_numeric($key))&&($key!="count")){
+            if(is_array($val)&&isset($val['count'])){
+              unset($val['count']);
+            }
+            $attrs_used[$key]=$val;
+          }
+        }
+        $attr= $attrs_used;
+        $tmp =array();
+        foreach($attr['goto'.$s_suffix.'AdminPrinter'] as $print){
+          $tmp[]=$print;
+        }
+        $attr['goto'.$s_suffix.'AdminPrinter'] = $tmp;
+
+        $tmp =array();
+        foreach($attr['goto'.$s_suffix.'Printer'] as $print){
+          $tmp[]=$print;
+        }
+        $attr['goto'.$s_suffix.'Printer'] = $tmp;
+
+        $ldap->cd($attr['dn']);
+        unset($attr['dn']);
+        $ldap->modify($attr);
+        if($ldap->get_error()!="Success"){
+          print_red(_("Error while writing printer")." : ".$ldap->get_error());
+        }
+      }
+    }    
+
     foreach($this->gotoPrinters as $printer) {
       $ldap->cd($printer['dn']);
       $ldap->cat($printer['dn']);
@@ -529,13 +755,13 @@ class environment extends plugin
       /* Filter entries */
  
       if($printer['mode'] == "user"){
-        $attribute  = "gotoUserPrinter";
-        $attribute2 = "gotoAdminPrinter";
+        $attribute  = "goto".$s_suffix."Printer";
+        $attribute2 = "goto".$s_suffix."AdminPrinter";
       }else{
-        $attribute  = "gotoAdminPrinter";
-        $attribute2 = "gotoUserPrinter";
+        $attribute  = "goto".$s_suffix."AdminPrinter";
+        $attribute2 = "goto".$s_suffix."UserPrinter";
       }
-      
+
       /* If this user is already assigned to $attribute2 
        * delete user from $attribute2, to be albe to attach him to $attribute
        * A user can't be admin and normal user for one printer
@@ -546,14 +772,14 @@ class environment extends plugin
         if(in_array($this->uid,$printer[$attribute2])){ 
           $tmp = array_flip($attrs[$attribute2]);
           unset($tmp[$this->uid]);
-          $attrs[$attribute2]=$tmp;
+          $attrs[$attribute2]=array_flip($tmp);
         }
         /* If Last entry removed, clear attribute*/
         if(empty($attrs[$attribute2])){
           $attrs[$attribute2]=array();
         }
       }
-
+    
       /* Attach user to the $attribute, if he is'nt already attached
        */
       if(!isset($attrs[$attribute])){
@@ -564,24 +790,55 @@ class environment extends plugin
           $attrs[$attribute][]=$this->uid;
         }
       }
+
+      $tmp =array();
+      if(isset($attrs['goto'.$s_suffix.'AdminPrinter'])){
+        foreach($attrs['goto'.$s_suffix.'AdminPrinter'] as $print){
+          $tmp[]=$print;
+        }
+      }
+      $attrs['goto'.$s_suffix.'AdminPrinter'] = $tmp;
+
+      $tmp =array();
+      if(isset($attrs['goto'.$s_suffix.'Printer'])){
+        foreach($attrs['goto'.$s_suffix.'Printer'] as $print){
+          $tmp[]=$print;
+        }
+      }
+      $attrs['goto'.$s_suffix.'Printer'] = $tmp;
+
       $ldap->cd($attrs['dn']);
       unset($attrs['dn']);
       $ldap->modify($attrs);
       if($ldap->get_error()!="Success"){
-        print_red($ldap->get_error());
+        print_red(_("Error while writing printer settings")." : ".$ldap->get_error());
       }
     }
-    
+  
+    if(isset($this->attrs['gotoPrinter'])){
+      unset($this->attrs['gotoPrinter']);
+    }
     /* Prepare HotPlug devices */
     $this->attrs['gotoHotplugDevice'] = array();
     foreach($this->gotoHotplugDevices as $name => $device){
       $this->attrs['gotoHotplugDevice'][] = $device['name']."|".$device['description']."|".$device['id'];
     }
 
+    /* Prepare LogonScripts */
+    $this->attrs['gotoLogonScript'] = array();
+    foreach($this->gotoLogonScripts as $name => $script){
+      $this->attrs['gotoLogonScript'][] =   $script['LogonName']."|".
+                                            $script['LogonOverload'].$script['LogonLast']."|".
+                                            $script['LogonPriority']."|".
+                                            base64_encode($script['LogonData'])."|".
+                                            $script['LogonDescription'];
+    }
+
     /* Prepare Shares */
     $this->attrs['gotoShare']=array();
     foreach($this->gotoShares as $name => $share){
-      $this->attrs['gotoShare'][] = $share['name']."|".$share['mountPoint'];
+      $this->attrs['gotoShare'][] = $share['name']."|".base64_encode($share['mountPoint']);
     }
 
     if(!empty($this->gotoKioskProfile)){
@@ -611,6 +868,14 @@ class environment extends plugin
       $this->attrs['gotoProfileServer']= array(); 
     }
 
+    foreach($this->attributes as $s_attr){
+      if(chkacl($this->acl,$s_attr)!="") {
+        if(isset($this->attrs[$s_attr])){
+          unset($this->attrs[$s_attr]);
+        }
+      }
+    }
+
     $ldap->cat ($this->dn);
     if ($ldap->fetch()){
       $mode= "modify";
@@ -628,9 +893,6 @@ class environment extends plugin
     $this->handle_post_events($mode);
   }
 
-
-
-
 /* This function returns all available Shares defined in this ldap 
  * There are two ways to call this function, if listboxEntry is true
  *  only name and path are attached to the array, in it is false, the whole 
@@ -642,22 +904,38 @@ class environment extends plugin
     $a_res = $ldap->search("(objectClass=goShareServer)",array("goExportEntry"));
     $return= array();
     while($entry = $ldap->fetch($a_res)){
-      $shareAttrs = split("\|",$entry['goExportEntry'][0]);
-      if($listboxEntry) { 
-        $return[$shareAttrs[0]] = $shareAttrs[0]." - ".$shareAttrs[3];
-      }else{
-        $return[$shareAttrs[0]]['name']         = $shareAttrs[0]; 
-        $return[$shareAttrs[0]]['description']  = $shareAttrs[1]; 
-        $return[$shareAttrs[0]]['type']         = $shareAttrs[2]; 
-        $return[$shareAttrs[0]]['charset']      = $shareAttrs[3]; 
-        $return[$shareAttrs[0]]['path']         = $shareAttrs[4]; 
-        $return[$shareAttrs[0]]['option']       = $shareAttrs[5]; 
+      unset($entry['goExportEntry']['count']);
+      foreach($entry['goExportEntry'] as $export){
+        $shareAttrs = split("\|",$export);
+        if($listboxEntry) { 
+          $return[$shareAttrs[0]] = $shareAttrs[0]." - ".$shareAttrs[4];
+        }else{
+          $return[$shareAttrs[0]]['name']         = $shareAttrs[0]; 
+          $return[$shareAttrs[0]]['description']  = $shareAttrs[1]; 
+          $return[$shareAttrs[0]]['type']         = $shareAttrs[2]; 
+          $return[$shareAttrs[0]]['charset']      = $shareAttrs[3]; 
+          $return[$shareAttrs[0]]['path']         = $shareAttrs[4]; 
+          $return[$shareAttrs[0]]['option']       = $shareAttrs[5]; 
+        }
       }
     }
     return($return);
   }
 
 
+/* This function returns all available ShareServer  
+ */
+  function getShareServerList()
+  {
+    $ldap= $this->config->get_ldap_link();
+    $a_res = $ldap->search("(objectClass=goShareServer)",array("goExportEntry","cn"));
+    $return= array();
+    while($entry = $ldap->fetch($a_res)){
+      $return[$entry['cn'][0]] = $entry['cn'][0];
+    }
+    return($return);
+  }
+
 /* Generate ListBox frindly output for the defined shares 
  * Possibly Add or remove an attribute here, 
  */
@@ -686,28 +964,36 @@ function printOutHotPlugDevices()
     return($a_return);
   }
 
-/* Generates ListBox frienly output of used printer devices 
- * Append ' - admin' if printer is used in admin mode
- */
-function printOutPrinterDevices()
+  /* Generates ListBox frienly output of used printer devices 
  * Append ' - admin' if printer is used in admin mode
  */
+  function printOutPrinterDevices()
   {
-  $a_return = array();
-  if(is_array($this->gotoPrinters)){
-    foreach($this->gotoPrinters as $printer){
+    $a_return = array();
+    if(is_array($this->gotoPrinters)){
+      foreach($this->gotoPrinters as $printer){
         if($printer['mode'] == "admin"){
-         $a_return[$printer['cn'][0]]= $printer['cn'][0]." - "._("Admin");
+          $a_return[$printer['cn'][0]]= $printer['cn'][0]." - "._("Admin");
         }else{
-         $a_return[$printer['cn'][0]]= $printer['cn'][0]; 
+          $a_return[$printer['cn'][0]]= $printer['cn'][0]; 
         }
       }
     }
-  return($a_return);
+    return($a_return);
   }
 
-
-
-
-
+  /* Generates ListBox frienly output of used logonscripts 
+   */
+  function printOutLogonScripts()
+  {
+    $a_return = array();
+    if(is_array($this->gotoLogonScripts)){
+      foreach($this->gotoLogonScripts as $script){
+        $a_return[$script['LogonName']]= $script['LogonPriority']." - ".$script['LogonName']; 
+      }
+    }
+    return($a_return);
+  }
 }