Code

fixed checkbox
[gosa.git] / plugins / admin / fai / class_faiPackageConfiguration.inc
index 6c22d6f833d7f6e3520fd12e715417cd1ac16b28..55077c67b7ad9e4497b8f9c9874028cd455a8dc7 100644 (file)
@@ -12,21 +12,39 @@ class faiPackageConfiguration extends plugin
   var $attributes     = array();
   var $objectclasses  = array();
 
+  var $Debconf_handle = NULL;
+  var $pkg_config ;
   var $obj;
 
-  function faiPackageConfiguration ($config, $dn= NULL,$obj)
+  function faiPackageConfiguration ($config, $dn= NULL,$obj,$path,$pkg_config)
   {
     plugin::plugin ($config, $dn);
     $this->obj = $obj;
+    $this->Debconf_handle = new debconf();
+    $this->Debconf_handle->set_template_directory($path);
+    $this->Debconf_handle->set_package($this->obj);
+    $this->Debconf_handle->set_language(preg_replace('/_.*$/', '', get_browser_language()));
+    $this->pkg_config = $pkg_config;
+
+    foreach($this->pkg_config as $var){
+      $this->Debconf_handle->SetDefault($var['Name'],$var['Value']);
+    }
   }
 
   function execute()
   {
-       /* Call parent execute */
-       plugin::execute();
+    /* Call parent execute */
+    plugin::execute();
+
     /* Fill templating stuff */
     $smarty     = get_smarty();
     $display = "";
+    $smarty->assign("headline", sprintf(_("Debconf information for package '%s'"), $this->obj));
+
+    $this->Debconf_handle->PostCheck();
+
+    $smarty->assign("Config",$this->Debconf_handle->get_dialog());
+
     $display.= $smarty->fetch(get_template_path('faiPackageConfiguration.tpl', TRUE));
     return($display);
   }
@@ -45,6 +63,16 @@ class faiPackageConfiguration extends plugin
 
   function save()
   {
+    $this->Debconf_handle->PostCheck();
+    $pkgs = $this->Debconf_handle->template;
+
+    $tmp = array();
+    foreach($pkgs as $pkg){
+      $tmp[$this->obj][$pkg['Name']]['Value']= $pkg['Default'];
+      $tmp[$this->obj][$pkg['Name']]['Name'] = $pkg['Name'];
+      $tmp[$this->obj][$pkg['Name']]['Type'] = $pkg['Type'];
+    }
+    return($tmp);
   }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: