From: hickert Date: Mon, 26 Jul 2010 15:46:32 +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=35c3db9759348c4a118ee8c3b495156efd7d4183;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@19119 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpService.inc b/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpService.inc index 5e19f0a6c..75dfd3d3d 100644 --- a/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpService.inc +++ b/gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpService.inc @@ -1,168 +1,168 @@ new){ - /* Load attributes */ - $this->dhcpPrimaryDN= $attrs['dhcpPrimaryDN'][0]; - } else { - /* We keep the parent dn here if it's new */ - $this->statements->set('default-lease-time', 600); - $this->statements->set('max-lease-time', 1700); - $this->statements->set('authoritative', TRUE); - $this->statements->set('ddns-update-style', 'none'); - } + /* Used attributes */ + var $dhcpPrimaryDN= ""; + var $orig_dhcpPrimaryDN= ""; + var $ddns_styles= array('none', 'interim', 'ad-hoc'); - $this->advanced->setAutoOptions(array("server-name")); - $this->advanced->setAutoStatements(array("default-lease-time", "max-lease-time", - "authoritative", "server-identifier", "ddns-update-style")); + /* attribute list for save action */ + var $objectclasses= array('top', 'dhcpService'); - /* Save for later action */ - $this->orig_dhcpPrimaryDN= $this->dhcpPrimaryDN; - } + function dhcpService($parent,$attrs) + { + dhcpPlugin::dhcpPlugin($parent,$attrs); - function execute() - { - /* Show main page */ - $smarty= get_smarty(); + /* Load statements / options */ + if (!$this->new){ + /* Load attributes */ + $this->dhcpPrimaryDN= $attrs['dhcpPrimaryDN'][0]; + } else { + /* We keep the parent dn here if it's new */ + $this->statements->set('default-lease-time', 600); + $this->statements->set('max-lease-time', 1700); + $this->statements->set('authoritative', TRUE); + $this->statements->set('ddns-update-style', 'none'); + } - /* Assign ACLs */ - $smarty->assign("acl",$this->parent->getacl("")); + $this->advanced->setAutoOptions(array("server-name")); + $this->advanced->setAutoStatements(array("default-lease-time", "max-lease-time", + "authoritative", "server-identifier", "ddns-update-style")); - $smarty->assign('ddns_styles', $this->ddns_styles); - foreach (array('max_lease_time', 'default_lease_time', 'ddns_update_style') as $value){ - $smarty->assign("$value", $this->statements->get(preg_replace('/_/', '-', $value))); + /* Save for later action */ + $this->orig_dhcpPrimaryDN= $this->dhcpPrimaryDN; } - $smarty->assign("authoritative", $this->statements->exists('authoritative')); - /* Show main page */ - $display= $smarty->fetch(get_template_path('dhcp_service.tpl', TRUE, dirname(__FILE__))).$this->network->execute(); + function execute() + { + /* Show main page */ + $smarty= get_smarty(); - $display.= $this->advanced->execute(); + /* Assign ACLs */ + $smarty->assign("acl",$this->parent->getacl("")); - /* Add footer */ - $display.= "
"; - if(preg_match("/w/",$this->parent->getacl(""))){ - $display.= " "; - } - $display.= ""; - $display.= "
"; + $smarty->assign('ddns_styles', $this->ddns_styles); + foreach (array('max_lease_time', 'default_lease_time', 'ddns_update_style') as $value){ + $smarty->assign("$value", $this->statements->get(preg_replace('/_/', '-', $value))); + } - return ($display); + $smarty->assign("authoritative", $this->statements->exists('authoritative')); - } + /* Show main page */ + $display= $smarty->fetch(get_template_path('dhcp_service.tpl', TRUE, dirname(__FILE__))).$this->network->execute(); - function remove_from_parent() - { - } + $display.= $this->advanced->execute(); + /* Add footer */ + $display.= "
"; + if(preg_match("/w/",$this->parent->getacl(""))){ + $display.= " "; + } + $display.= ""; + $display.= "
"; - /* Save data to object */ - function save_object() - { - /* No need to save in the first time */ - if (isset($_POST['ddns_update_style']) && preg_match("/w/",$this->parent->getacl(""))){ + return ($display); - /* Save remaining attributes */ - foreach (array('max_lease_time', 'default_lease_time', 'ddns_update_style') as $val){ - $tval= preg_replace('/_/', '-', $val); - if ($_POST[$val] != ""){ - $this->statements->set($tval,validate(get_post($val))); - } else { - $this->statements->removeAll($tval); - } - } - if (isset($_POST['authoritative'])){ - $this->statements->set('authoritative', ""); - } else { - $this->statements->removeAll('authoritative'); - } } - dhcpPlugin::save_object(); - } + function remove_from_parent() + { + } - /* Check values */ - function check() - { - $message= array(); + /* Save data to object */ + function save_object() + { + /* No need to save in the first time */ + if (isset($_POST['ddns_update_style']) && preg_match("/w/",$this->parent->getacl(""))){ + + /* Save remaining attributes */ + foreach (array('max_lease_time', 'default_lease_time', 'ddns_update_style') as $val){ + $tval= preg_replace('/_/', '-', $val); + if ($_POST[$val] != ""){ + $this->statements->set($tval,validate(get_post($val))); + } else { + $this->statements->removeAll($tval); + } + } + if (isset($_POST['authoritative'])){ + $this->statements->set('authoritative', ""); + } else { + $this->statements->removeAll('authoritative'); + } + } - if (!tests::is_id($this->statements->get('default-lease-time'))){ - $message[]= msgPool::invalid(_("Lease time"),$this->statements->get('default-lease-time'),"/[0-9]/"); - } - if (!tests::is_id($this->statements->get('max-lease-time'))){ - $message[]= msgPool::invalid(_("Max lease time"),$this->statements->get('max-lease-time'),"/[0-9]/"); - } - if ($this->statements->get('default-lease-time') > $this->statements->get('max-lease-time')){ - $message[]= msgPool::toobig(_("Default lease time"),_("Maximum lease time")); + dhcpPlugin::save_object(); } - /* Check external plugins */ - $net= $this->network->check(); - $adv= $this->advanced->check(); - $message= array_merge($message, $net, $adv); - return $message; - } - - - /* Save to LDAP */ - function save() - { - global $config; - $this->attrs= array(); - - /* Get and set server name */ - $ldap= $config->get_ldap_link(); - $ldap->cat($this->dhcpPrimaryDN, array('cn')); - $res= $ldap->fetch(); - if(isset($res['cn'][0])){ - $server_name= $res['cn'][0]; + + /* Check values */ + function check() + { + $message= array(); + + if (!tests::is_id($this->statements->get('default-lease-time'))){ + $message[]= msgPool::invalid(_("Lease time"),$this->statements->get('default-lease-time'),"/[0-9]/"); + } + if (!tests::is_id($this->statements->get('max-lease-time'))){ + $message[]= msgPool::invalid(_("Max lease time"),$this->statements->get('max-lease-time'),"/[0-9]/"); + } + if ($this->statements->get('default-lease-time') > $this->statements->get('max-lease-time')){ + $message[]= msgPool::toobig(_("Default lease time"),_("Maximum lease time")); + } + + /* Check external plugins */ + $net= $this->network->check(); + $adv= $this->advanced->check(); + $message= array_merge($message, $net, $adv); + return $message; } - - dhcpPlugin::save(); - $this->attrs['dhcpPrimaryDN']= array($this->dhcpPrimaryDN); - $this->removeOption('server-name'); + + /* Save to LDAP */ + function save() + { + global $config; + $this->attrs= array(); + + /* Get and set server name */ + $ldap= $config->get_ldap_link(); + $ldap->cat($this->dhcpPrimaryDN, array('cn')); + $res= $ldap->fetch(); + if(isset($res['cn'][0])){ + $server_name= $res['cn'][0]; + } + + dhcpPlugin::save(); + + $this->attrs['dhcpPrimaryDN']= array($this->dhcpPrimaryDN); + $this->removeOption('server-name'); # $this->attrs['dhcpOption'][]= "server-name $server_name"; - return ($this->attrs); - } - + return ($this->attrs); + } + } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>