summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9c39075)
raw | patch | inline | side by side (parent: 9c39075)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Sep 2010 13:20:06 +0000 (13:20 +0000) | ||
committer | hickert <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 | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/systems/goto/Config/class_DeviceConfig.inc b/gosa-plugins/goto/admin/systems/goto/Config/class_DeviceConfig.inc
index bfe94e624a490b2cb69314c76b29c83628260e01..9aa0b028a33df35e2c44d49b0329e5cc065c1270 100644 (file)
private $base ;
+ public $is_account = FALSE;
+ public $ignore_account = FALSE;
+
/*! \brief Constructs the device configuration plugin
* @param Config The GOsa configuration object.
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');
$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());
+ }
}
?>