X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_goNtpServer.inc;h=aeb5a4b974f2b8a569f7128da21e8a7c7f838992;hb=6ae7a3503964fb97587cf21b9c1b4276b9db23fc;hp=fa6e11c072eddfef8b5f9071b937bfa7f227f118;hpb=b01864fc658d3b612b7e3ec9dde552087c4196d0;p=gosa.git diff --git a/plugins/admin/systems/class_goNtpServer.inc b/plugins/admin/systems/class_goNtpServer.inc index fa6e11c07..aeb5a4b97 100644 --- a/plugins/admin/systems/class_goNtpServer.inc +++ b/plugins/admin/systems/class_goNtpServer.inc @@ -1,16 +1,18 @@ "Eins ist toll", "zwei" => "Zwei ist noch besser"); /* This plugin only writes its objectClass */ var $objectclasses = array("goNtpServer"); - var $attributes = array("goTimeSource","goNtpServerStatus"); + var $attributes = array("goTimeSource"); var $StatusFlag = "goNtpServerStatus"; - + /* This class can't be assigned twice so it conflicts with itsself */ var $conflicts = array("goNtpServer"); @@ -19,13 +21,14 @@ class goNtpServer extends plugin{ var $goTimeSource = array(); var $goNtpServerStatus= ""; var $acl; - - + var $cn = ""; + var $view_logged =FALSE; + function goNtpServer($config,$dn) { - plugin::plugin($config,$dn); - $this->DisplayName = _("Time service"); - + goService::goService($config,$dn); + $this->DisplayName = _("Time service (NTP)"); + /* Load arrays */ $tmp = array(); if (isset($this->attrs['goTimeSource'])){ @@ -41,14 +44,19 @@ class goNtpServer extends plugin{ { $smarty = get_smarty(); - /* Here we add a new entry */ - if(isset($_POST['NewNTPAdd']) && $_POST['NewNTPExport'] != "") { + if($this->is_account && !$this->view_logged){ + $this->view_logged = TRUE; + new log("view","server/".get_class($this),$this->dn); + } + + /* Here we add a new entry */ + if(isset($_POST['NewNTPAdd']) && $_POST['NewNTPExport'] != "" && $this->acl_is_writeable("goTimeSource")) { $this->goTimeSource[$_POST['NewNTPExport']]= $_POST['NewNTPExport']; asort($this->goTimeSource); } /* Deleting an Entry, is a bit more complicated than adding one*/ - if(isset($_POST['DelNTPEnt'])) { + if((isset($_POST['DelNTPEnt'])) && (isset($_POST['goTimeSource'])) && $this->acl_is_writeable("goTimeSource")) { foreach ($_POST['goTimeSource'] as $entry){ if (isset($this->goTimeSource[$entry])){ unset($this->goTimeSource[$entry]); @@ -56,7 +64,7 @@ class goNtpServer extends plugin{ } } - $smarty->assign("goNtpServerACL",chkacl($this->acl,"goNtpServer")) ; + $smarty->assign("goNtpServerACL", $this->getacl("goNtpServer")) ; $smarty->assign("goTimeSource" , $this->goTimeSource); return($smarty->fetch(get_template_path("goNtpServer.tpl",TRUE,dirname(__FILE__)))); } @@ -64,35 +72,13 @@ class goNtpServer extends plugin{ function getListEntry() { - $flag = $this->StatusFlag; - $fields['Status'] = $this->$flag; - $fields['Message'] = _("NTP service"); - $fields['AllowStart'] = true; - $fields['AllowStop'] = true; - $fields['AllowRestart'] = true; - $fields['AllowRemove']= true; + $fields = goService::getListEntry(); + $fields['Message'] = _("Time service (NTP)"); $fields['AllowEdit'] = true; return($fields); } - function remove_from_parent() - { - plugin::remove_from_parent(); - /* Check if this is a new entry ... add/modify */ - $ldap = $this->config->get_ldap_link(); - $ldap->cat($this->dn,array("objectClass")); - if($ldap->count()){ - $ldap->cd($this->dn); - $ldap->modify($this->attrs); - }else{ - $ldap->cd($this->dn); - $ldap->add($this->attrs); - } - show_ldap_error($ldap->get_error()); - } - - function save() { plugin::save(); @@ -110,36 +96,54 @@ class goNtpServer extends plugin{ $ldap->cd($this->dn); $ldap->add($this->attrs); } - show_ldap_error($ldap->get_error()); + show_ldap_error($ldap->get_error(), sprintf(_("Saving server services/goNtpServer with dn '%s' failed."),$this->dn)); + if($this->initially_was_account){ + $this->handle_post_events("modify"); + new log("modify","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + }else{ + $this->handle_post_events("add"); + new log("create","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + } } - /* Directly save new status flag */ - function setStatus($value) + /* Return plugin informations for acl handling */ + function plInfo() { - if($value == "none") return; - if(!$this->initially_was_account) return; - $ldap = $this->config->get_ldap_link(); - $ldap->cd($this->dn); - $ldap->cat($this->dn,array("objectClass")); - if($ldap->count()){ + return (array( + "plShortName" => _("Time service"), + "plDescription" => _("Time service - NTP")." ("._("Services").")", + "plSelfModify" => FALSE, + "plDepends" => array(), + "plPriority" => 91, + "plSection" => array("administration"), + "plCategory" => array("server"), + + "plProvidedAcls"=> array( + "goTimeSource" =>_("Ntp source")) + )); + } - $tmp = $ldap->fetch(); - for($i = 0; $i < $tmp['objectClass']['count']; $i ++){ - $attrs['objectClass'][] = $tmp['objectClass'][$i]; + + function PrepareForCopyPaste($source) + { + plugin::PrepareForCopyPaste($source); + + /* Load arrays */ + $tmp = array(); + if (isset($source['goTimeSource'])){ + for ($i= 0; $i<$source['goTimeSource']['count']; $i++){ + $tmp[$source['goTimeSource'][$i]]= $source['goTimeSource'][$i]; } - $flag = $this->StatusFlag; - $attrs[$flag] = $value; - $this->$flag = $value; - $ldap->modify($attrs); - show_ldap_error($ldap->get_error()); } - } + $this->goTimeSource= $tmp; + } + function check(){ return array();} - -function save_object(){;} + + function save_object(){;} } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>