From: hickert Date: Tue, 27 Jul 2010 09:17:57 +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=674f3b7f10c5968de263850fe6e82d3495279e6a;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@19160 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/admin/systems/services/terminal/class_goTerminalServer.inc b/gosa-plugins/goto/admin/systems/services/terminal/class_goTerminalServer.inc index c496e1328..793c91465 100644 --- a/gosa-plugins/goto/admin/systems/services/terminal/class_goTerminalServer.inc +++ b/gosa-plugins/goto/admin/systems/services/terminal/class_goTerminalServer.inc @@ -1,186 +1,185 @@ DisplayName = _("Terminal service"); - - $tmp = array(); - if(isset($this->attrs['gotoSessionType'])){ - for($i =0; $i < $this->attrs['gotoSessionType']['count'] ; $i++){ - $tmp[] = $this->attrs['gotoSessionType'][$i]; - } + + /* This plugin only writes its objectClass */ + var $objectclasses = array("goTerminalServer"); + var $attributes = array("goXdmcpIsEnabled","gotoSessionType"); + var $StatusFlag = "goTerminalServerStatus"; + + /* This class can't be assigned twice so it conflicts with itsself */ + var $conflicts = array("goTerminalServer"); + + var $DisplayName = ""; + var $dn = NULL; + var $acl; + var $cn = ""; + var $goTerminalServerStatus = ""; + var $goXdmcpIsEnabled = false; + var $view_logged = FALSE; + + var $gotoSessionType = array(); + + function goTerminalServer(&$config,$dn) + { + goService::goService($config,$dn); + $this->DisplayName = _("Terminal service"); + + $tmp = array(); + if(isset($this->attrs['gotoSessionType'])){ + for($i =0; $i < $this->attrs['gotoSessionType']['count'] ; $i++){ + $tmp[] = $this->attrs['gotoSessionType'][$i]; + } + } + $this->gotoSessionType = $tmp; +#$this->gotoSessionTypes= array("LDM","XDMCP","RDP","CITRIX"); + $this->gotoSessionTypes= array("LDM","XDMCP", "SHELL", "RDP", "TELNET"); } - $this->gotoSessionType = $tmp; - #$this->gotoSessionTypes= array("LDM","XDMCP","RDP","CITRIX"); - $this->gotoSessionTypes= array("LDM","XDMCP", "SHELL", "RDP", "TELNET"); - } - function execute() - { - $smarty = get_smarty(); + function execute() + { + $smarty = get_smarty(); - if($this->is_account && !$this->view_logged){ - $this->view_logged = TRUE; - new log("view","server/".get_class($this),$this->dn); - } + if($this->is_account && !$this->view_logged){ + $this->view_logged = TRUE; + new log("view","server/".get_class($this),$this->dn); + } - - $tmp = $this->plinfo(); - foreach($tmp['plProvidedAcls'] as $name => $translation){ - $smarty->assign($name."ACL",$this->getacl($name)); - } - foreach($this->attributes as $attr){ - $smarty->assign($attr,$this->$attr); - } + $tmp = $this->plinfo(); + foreach($tmp['plProvidedAcls'] as $name => $translation){ + $smarty->assign($name."ACL",$this->getacl($name)); + } + + foreach($this->attributes as $attr){ + $smarty->assign($attr, set_post($this->$attr)); + } - $tmp = array(); - foreach($this->gotoSessionTypes as $type){ - if(in_array($type,$this->gotoSessionType)){ - $tmp[$type] = TRUE; - }else{ - $tmp[$type] = FALSE; - } + $tmp = array(); + foreach($this->gotoSessionTypes as $type){ + if(in_array($type,$this->gotoSessionType)){ + $tmp[$type] = TRUE; + }else{ + $tmp[$type] = FALSE; + } + } + $smarty->assign("gotoSessionTypes", set_post($tmp)); + return($smarty->fetch(get_template_path("goTerminalServer.tpl",TRUE,dirname(__FILE__)))); } - $smarty->assign("gotoSessionTypes",$tmp); - return($smarty->fetch(get_template_path("goTerminalServer.tpl",TRUE,dirname(__FILE__)))); - } + function getListEntry() + { + $fields = goService::getListEntry(); + $fields['Message'] = _("Terminal service"); +#$fields['AllowEdit'] = true; + return($fields); + } - function getListEntry() - { - $fields = goService::getListEntry(); - $fields['Message'] = _("Terminal service"); - #$fields['AllowEdit'] = true; - return($fields); - } + function save() + { + plugin::save(); - function save() - { - plugin::save(); + if(!$this->goXdmcpIsEnabled){ + $this->attrs['goXdmcpIsEnabled'] = "0"; + } - if(!$this->goXdmcpIsEnabled){ - $this->attrs['goXdmcpIsEnabled'] = "0"; - } + $this->attrs['gotoSessionType'] = array_values($this->gotoSessionType); - $this->attrs['gotoSessionType'] = array_values($this->gotoSessionType); - - /* 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); - } - if (!$ldap->success()){ - msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class())); - } - 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()); + /* 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); + } + if (!$ldap->success()){ + msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class())); + } + 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()); + } } - } - - function check() - { - $message = plugin::check(); - return($message); - } + function check() + { + $message = plugin::check(); + return($message); + } - function save_object() - { - if(isset($_POST['goTerminalServerPosted'])){ - plugin::save_object(); - $this->gotoSessionType = array(); - foreach($this->gotoSessionTypes as $attr){ - if(isset($_POST['gotoSessionType_'.$attr])){ - $this->gotoSessionType[] = $attr; + function save_object() + { + if(isset($_POST['goTerminalServerPosted'])){ + plugin::save_object(); + + $this->gotoSessionType = array(); + foreach($this->gotoSessionTypes as $attr){ + if(isset($_POST['gotoSessionType_'.$attr])){ + $this->gotoSessionType[] = $attr; + } + } + + if($this->acl_is_writeable("goXdmcpIsEnabled")){ + if(isset($_POST['goXdmcpIsEnabled'])){ + $this->goXdmcpIsEnabled = true; + }else{ + $this->goXdmcpIsEnabled = false; + } + } } - } + } - if($this->acl_is_writeable("goXdmcpIsEnabled")){ - if(isset($_POST['goXdmcpIsEnabled'])){ - $this->goXdmcpIsEnabled = true; - }else{ - $this->goXdmcpIsEnabled = false; + + function PrepareForCopyPaste($obj) + { + plugin::PrepareForCopyPaste($obj); + $tmp = array(); + if(isset($obj['gotoSessionType'])){ + for($i =0; $i < $obj['gotoSessionType']['count'] ; $i++){ + $tmp[] = $obj['gotoSessionType'][$i]; + } } - } + $this->gotoSessionType = $tmp; +#$this->gotoSessionTypes= array("LDM","XDMCP","RDP","CITRIX"); + $this->gotoSessionTypes= array("LDM","XDMCP", "SHELL", "TELNET"); } - } - function PrepareForCopyPaste($obj) - { - plugin::PrepareForCopyPaste($obj); - $tmp = array(); - if(isset($obj['gotoSessionType'])){ - for($i =0; $i < $obj['gotoSessionType']['count'] ; $i++){ - $tmp[] = $obj['gotoSessionType'][$i]; - } + /* Return plugin informations for acl handling */ + static function plInfo() + { + return (array( + "plShortName" => _("Terminal service"), + "plDescription" => _("Terminal service")." ("._("Services").")", + "plSelfModify" => FALSE, + "plDepends" => array(), + "plPriority" => 87, + "plSection" => array("administration"), + "plRequirements"=> array( + 'ldapSchema' => array('goTerminalServer' => '>=2.7'), + 'onFailureDisablePlugin' => array(get_class()) + ), + "plCategory" => array("server"), + + + "plProvidedAcls"=> array( + "start" => _("Start"), + "stop" => _("Stop"), + "restart" => _("Restart"), + "goXdmcpIsEnabled" => _("Temporary disable login")) + )); } - $this->gotoSessionType = $tmp; - #$this->gotoSessionTypes= array("LDM","XDMCP","RDP","CITRIX"); - $this->gotoSessionTypes= array("LDM","XDMCP", "SHELL", "TELNET"); - } - - - /* Return plugin informations for acl handling */ - static function plInfo() - { - return (array( - "plShortName" => _("Terminal service"), - "plDescription" => _("Terminal service")." ("._("Services").")", - "plSelfModify" => FALSE, - "plDepends" => array(), - "plPriority" => 87, - "plSection" => array("administration"), - "plRequirements"=> array( - 'ldapSchema' => array('goTerminalServer' => '>=2.7'), - 'onFailureDisablePlugin' => array(get_class()) - ), - "plCategory" => array("server"), - - - "plProvidedAcls"=> array( - "start" => _("Start"), - "stop" => _("Stop"), - "restart" => _("Restart"), - "goXdmcpIsEnabled" => _("Temporary disable login")) - )); - } }