Code

removed defaults from get_cfg_value and added some missing properties.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 May 2010 07:41:55 +0000 (07:41 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 May 2010 07:41:55 +0000 (07:41 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18326 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/admin/systems/ppd/class_ppdManager.inc

index 15a9106d007136ed7726c39ff7d841cc4fe4ddaa..9f93d6c099b648461d11500511b13e2bd492abfb 100644 (file)
@@ -8,25 +8,22 @@ class ppdManager
 
   var $useGzip  = true;
 
-       function ppdManager($path)
-       {
-    global $config;
-    $value =$config->get_cfg_value("core","ppdGzip","true");
-    if(preg_match('/false/i',$value)){
-      $this->useGzip  = false;
-    }
-  
-               if(is_dir($path)){
-                       $this->path= $path;
-               }elseif(is_link($path) && (is_dir(readlink($path)))) {
-                   $this->path= $path;
-               } else {
-                       msg_dialog::display(_("PPD manager error"), sprintf(_("The specified path '%s' does not exist."),$path), ERROR_DIALOG);
-                       return (false);
-               }
-
+  function ppdManager($path)
+  {
+      global $config;
+      if($config->boolValueIsTrue("core","ppdGzip")){
+          $this->useGzip  = false;
+      }
 
-       }
+      if(is_dir($path)){
+          $this->path= $path;
+      }elseif(is_link($path) && (is_dir(readlink($path)))) {
+          $this->path= $path;
+      } else {
+          msg_dialog::display(_("PPD manager error"), sprintf(_("The specified path '%s' does not exist."),$path), ERROR_DIALOG);
+          return (false);
+      }
+  }
 
 
        function findPPD($path)