Code

Added dummy save method
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 28 Sep 2010 13:20:06 +0000 (13:20 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 28 Sep 2010 13:20:06 +0000 (13:20 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19836 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/admin/systems/goto/Config/class_DeviceConfig.inc

index bfe94e624a490b2cb69314c76b29c83628260e01..9aa0b028a33df35e2c44d49b0329e5cc065c1270 100644 (file)
@@ -18,6 +18,9 @@ class DeviceConfig extends management
 
     private $base ;
 
+    public $is_account = FALSE;
+    public $ignore_account = FALSE;
+
 
     /*! \brief  Constructs the device configuration plugin 
      *  @param  Config  The GOsa configuration object.
@@ -55,6 +58,8 @@ class DeviceConfig extends management
             return;
         }
 
+        $this->is_account = TRUE;
+
         // Set current item to 'root', this is the minimum to get things running.
         $this->addItem($root,'root',array());
         $this->setCurrentItem('root');
@@ -316,6 +321,18 @@ class DeviceConfig extends management
         $this->acl_category = $category;
     }
 
-    function save(){}
+    function save()
+    {
+        foreach($this->currentItemValues as $name => $item){
+            foreach($item['values'] as $oName => $oValue){
+                echo "<br>{$name} -- <i>{$item['type']}</i>: <b>{$oName}</b>: {$oValue}";
+            }
+        }
+    }
+    
+    function check()
+    {
+        return(array());
+    }
 }
 ?>