From: hickert Date: Tue, 27 Jul 2010 09:17:34 +0000 (+0000) Subject: Updated several service dialogs, fixed typos, string, html, post handling and more. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2e7f2549b195c43bed66e8876dea9da26978b621;p=gosa.git Updated several service dialogs, fixed typos, string, html, post handling and more. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19152 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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 e7bf72033..49c5a5695 100644 --- a/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc +++ b/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc @@ -1,192 +1,192 @@ advanced->setAutoStatements(array("server-identifier", "default-lease-time", - "max-lease-time", "min-lease-time", "authoritative", "deny unknown-clients", - "deny bootp", "deny booting", "allow unknown-clients", - "allow bootp", "allow booting")); - } + function dhcpSharedNetwork($parent,$attrs) + { + dhcpPlugin::dhcpPlugin($parent,$attrs); + $this->advanced->setAutoStatements(array("server-identifier", "default-lease-time", + "max-lease-time", "min-lease-time", "authoritative", "deny unknown-clients", + "deny bootp", "deny booting", "allow unknown-clients", + "allow bootp", "allow booting")); + } - function execute() - { - $smarty= get_smarty(); - /* Assign ACLs */ - $smarty->assign("acl",$this->parent->getacl("")); + function execute() + { + $smarty= get_smarty(); - /* Fill template */ - $smarty->assign ("cn", $this->cn); - foreach (array("server-identifier", "default-lease-time", "max-lease-time", "min-lease-time") as $attr){ - $name = preg_replace('/-/', '_', $attr); - $smarty->assign($name, $this->statements->get($attr)); - } - if ($this->statements->exists("authoritative")){ - $smarty->assign("authoritative", "checked"); - } else { - $smarty->assign("authoritative", ""); - } + /* Assign ACLs */ + $smarty->assign("acl",$this->parent->getacl("")); - $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(); - - /* Remove states configured by checkboxes. - */ - foreach(array("deny unknown-clients", - "deny bootp", "deny booting", "allow unknown-clients", - "allow bootp", "allow booting") as $name){ - if($this->statements->exists($name)){ - $this->statements->remove($name); - } - } + /* Fill template */ + $smarty->assign ("cn", set_post($this->cn)); + foreach (array("server-identifier", "default-lease-time", "max-lease-time", "min-lease-time") as $attr){ + $name = preg_replace('/-/', '_', $attr); + $smarty->assign($name, set_post($this->statements->get($attr))); + } + if ($this->statements->exists("authoritative")){ + $smarty->assign("authoritative", "checked"); + } else { + $smarty->assign("authoritative", ""); + } - $display.= $this->advanced->execute(); + $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,""); + } + } - /* Add footer */ - $display.= "
"; - if(preg_match("/w/",$this->parent->getacl(""))){ - $display.= " "; - } - $display.= ""; - $display.= "
"; + /* Show main page */ + $display= $smarty->fetch(get_template_path('dhcp_sharedNetwork.tpl', TRUE,dirname(__FILE__))).$this->network->execute(); + + /* Remove states configured by checkboxes. + */ + foreach(array("deny unknown-clients", + "deny bootp", "deny booting", "allow unknown-clients", + "allow bootp", "allow booting") as $name){ + if($this->statements->exists($name)){ + $this->statements->remove($name); + } + } - return ($display); - } + $display.= $this->advanced->execute(); + /* Add footer */ + $display.= "
"; + if(preg_match("/w/",$this->parent->getacl(""))){ + $display.= " "; + } + $display.= ""; + $display.= "
"; - function remove_from_parent() - { - } + return ($display); + } - /* Save data to object */ - function save_object() - { - /* Check permissions, don't touch anything if we do not have write permissions - */ - if (!preg_match("/w/",$this->parent->getacl(""))){ - dhcpPlugin::save_object(); - }elseif(isset($_POST['cn'])){ + function remove_from_parent() + { + } - $this->cn= validate(get_post('cn')); - dhcpPlugin::save_object(); - foreach (array("server-identifier", "default-lease-time", - "max-lease-time", "min-lease-time") as $attr){ - if (isset($_POST[$attr]) && $_POST[$attr] != ""){ - $this->statements->set($attr,get_post($attr)); - } else { - $this->statements->removeAll($attr); + /* Save data to object */ + function save_object() + { + /* Check permissions, don't touch anything if we do not have write permissions + */ + if (!preg_match("/w/",$this->parent->getacl(""))){ + dhcpPlugin::save_object(); + }elseif(isset($_POST['cn'])){ + + $this->cn= get_post('cn'); + dhcpPlugin::save_object(); + + foreach (array("server-identifier", "default-lease-time", + "max-lease-time", "min-lease-time") as $attr){ + if (isset($_POST[$attr]) && $_POST[$attr] != ""){ + $this->statements->set($attr,get_post($attr)); + } else { + $this->statements->removeAll($attr); + } + } + + if (isset($_POST["authoritative"])){ + $this->statements->set("authoritative", ""); + } else { + $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->add("allow",$name); + } else { + $this->statements->add("deny",$name); + } + } } - } - - if (isset($_POST["authoritative"])){ - $this->statements->set("authoritative", ""); - } else { - $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->add("allow",$name); - } else { - $this->statements->add("deny",$name); - } - } } - } - /* Check values */ - function check() - { - $message= array(); + /* Check values */ + function check() + { + $message= array(); - $cache = $this->parent->dhcpObjectCache; + $cache = $this->parent->dhcpObjectCache; - /* All required fields are set? */ - if ($this->cn == ""){ - $message[]= msgPool::required(_("Name")); - } + /* All required fields are set? */ + if ($this->cn == ""){ + $message[]= msgPool::required(_("Name")); + } - /* Check lease times */ - foreach (array("default-lease-time" => _("Default lease time"), - "max-lease-time" => _("Max. lease time"), - "min-lease-time" => _("Min. lease time")) as $key => $val){ - if ($this->statements->exists($key) && $this->statements->get($key) != "" && - !tests::is_id($this->statements->get($key))){ - $message[]= msgPool::invalid($val,$this->statements->get($key),"/[0-9]/"); - } - } + /* Check lease times */ + foreach (array("default-lease-time" => _("Default lease time"), + "max-lease-time" => _("Max. lease time"), + "min-lease-time" => _("Min. lease time")) as $key => $val){ + if ($this->statements->exists($key) && $this->statements->get($key) != "" && + !tests::is_id($this->statements->get($key))){ + $message[]= msgPool::invalid($val,$this->statements->get($key),"/[0-9]/"); + } + } - /* cn already used? */ - if ($this->orig_cn != $this->cn || $this->new){ + /* cn already used? */ + if ($this->orig_cn != $this->cn || $this->new){ - foreach($cache as $dn => $dummy){ - if (preg_match("/^cn=".$this->cn.",/", $dn) && count($dummy)){ - $message[]= msgPool::duplicated(_("Name")); - break; + foreach($cache as $dn => $dummy){ + if (preg_match("/^cn=".$this->cn.",/", $dn) && count($dummy)){ + $message[]= msgPool::duplicated(_("Name")); + break; + } + } } - } - } - /* Check external plugins */ - $net= $this->network->check(); - $adv= $this->advanced->check(); - $message= array_merge($message, $net, $adv); + /* Check external plugins */ + $net= $this->network->check(); + $adv= $this->advanced->check(); + $message= array_merge($message, $net, $adv); - return $message; - } + return $message; + } - /* Save to LDAP */ - function save() - { - dhcpPlugin::save(); + /* Save to LDAP */ + function save() + { + dhcpPlugin::save(); - return ($this->attrs); - } + return ($this->attrs); + } }