summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: be0cb1e)
raw | patch | inline | side by side (parent: be0cb1e)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 29 Jun 2009 09:59:28 +0000 (09:59 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 29 Jun 2009 09:59:28 +0000 (09:59 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13815 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc | patch | blob | history |
diff --git a/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc b/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc
index 6f7964832f56c2296738c61f8459bcfdfcd50a51..b57cd44f1f862e42fbb4d5d9236e56ad06c381ab 100644 (file)
} else {
$smarty->assign("authoritative", "");
}
- if (!$this->statements->exists("deny unknown-clients")){
- $smarty->assign("allow_unknown_state", "checked");
- } else {
- $smarty->assign("allow_unknown_state", "");
- }
- if (!$this->statements->exists("deny bootp")){
- $smarty->assign("allow_bootp_state", "checked");
- } else {
- $smarty->assign("allow_bootp_state", "");
- }
- if (!$this->statements->exists("deny booting")){
- $smarty->assign("allow_booting_state", "checked");
- } else {
- $smarty->assign("allow_booting_state", "");
- }
+ $allow = $this->statements->get("allow");
+ if(!is_array($allow)) $allow=array($allow);
+ foreach(array(
+ "unknown-clients" => "allow_unknown_state",
+ "bootp" => "allow_bootp_state",
+ "booting" => "allow_booting_state") as $state => $target){
+ if(in_array($state,$allow)){
+ $smarty->assign($target,"checked");
+ }else{
+ $smarty->assign($target,"");
+ }
+ }
+
/* Show main page */
$display= $smarty->fetch(get_template_path('dhcp_sharedNetwork.tpl', TRUE,dirname(__FILE__))).$this->network->execute();
$this->statements->removeAll("authoritative");
}
+ $this->statements->removeAll("deny");
+ $this->statements->removeAll("allow");
foreach(array("unknown-clients", "bootp", "booting") as $name){
if (isset($_POST[$name])){
- $this->statements->removeAll("deny $name");
- $this->statements->set("allow $name","");
+ $this->statements->add("allow",$name);
} else {
- $this->statements->removeAll("allow $name");
- $this->statements->set("deny $name","");
+ $this->statements->add("deny",$name);
}
}
}