From: hickert Date: Wed, 3 Mar 2010 17:15:19 +0000 (+0000) Subject: removed old style edit method X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d045289274ce86f92f87eadee6654adc7cf4be0b;p=gosa.git removed old style edit method git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16005 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/personal/environment/class_environment.inc b/gosa-plugins/goto/personal/environment/class_environment.inc index 30afb96fa..5e8448abc 100644 --- a/gosa-plugins/goto/personal/environment/class_environment.inc +++ b/gosa-plugins/goto/personal/environment/class_environment.inc @@ -342,11 +342,8 @@ class environment extends plugin } } - /* Are we editing from MyAccount and not editing a user */ - $WriteOnly = (!isset($this->parent)|| !$this->parent) && !session::is_set('edit'); - /* Check profile server */ - if($this->acl_is_writeable("gotoProfileServer",$WriteOnly)){ + if($this->acl_is_writeable("gotoProfileServer")){ if(!empty($this->gotoProfileServer) && !isset($this->gotoProfileServers[$this->gotoProfileServer])){ @@ -389,7 +386,7 @@ class environment extends plugin } /* Prepare ACL settings*/ - $smarty->assign($s_attr."ACL",$this->getacl($s_attr,$WriteOnly)); + $smarty->assign($s_attr."ACL",$this->getacl($s_attr)); } /* Is accout enabled | are we editing from usermenu or admin menu @@ -509,14 +506,14 @@ class environment extends plugin } /* Prepare ACL settings*/ - $smarty->assign($s_attr."ACL",$this->getacl($s_attr,$WriteOnly)); + $smarty->assign($s_attr."ACL",$this->getacl($s_attr)); } foreach(array("gotoHotplugDevice","gotoProfileFlagC","gotoProfileFlagL") as $s_attr){ - $smarty->assign($s_attr."ACL",$this->getacl($s_attr,$WriteOnly)); + $smarty->assign($s_attr."ACL",$this->getacl($s_attr)); } - if($WriteOnly) { + if($this->read_only) { $smarty->assign("gotoPrinterACL","r"); }else{ $smarty->assign("gotoPrinterACL","rw"); @@ -526,15 +523,15 @@ class environment extends plugin $smarty->assign("useProfile",$this->useProfile); if(empty($this->useProfile) && !$this->multiple_support_active){ $smarty->assign("useProfileCHK",""); - $smarty->assign("gotoProfileServerACL" , preg_replace("/w/","",$this->getacl("gotoProfileServer",$WriteOnly))); - $smarty->assign("gotoProfileQuotaACL" , preg_replace("/w/","",$this->getacl("gotoProfileQuota",$WriteOnly))); - $smarty->assign("gotoProfileFlagCACL" , preg_replace("/w/","",$this->getacl("gotoProfileFlagC",$WriteOnly))); + $smarty->assign("gotoProfileServerACL" , preg_replace("/w/","",$this->getacl("gotoProfileServer"))); + $smarty->assign("gotoProfileQuotaACL" , preg_replace("/w/","",$this->getacl("gotoProfileQuota"))); + $smarty->assign("gotoProfileFlagCACL" , preg_replace("/w/","",$this->getacl("gotoProfileFlagC"))); }else{ $smarty->assign("useProfileCHK"," checked "); } - $smarty->assign("gotoProfileServerWriteable", $this->acl_is_writeable("gotoProfileServer",$WriteOnly)); - $smarty->assign("gotoProfileACL", $this->getacl("gotoProfileServer",$WriteOnly).$this->getacl("gotoProfileQuota",$WriteOnly)); + $smarty->assign("gotoProfileServerWriteable", $this->acl_is_writeable("gotoProfileServer")); + $smarty->assign("gotoProfileACL", $this->getacl("gotoProfileServer").$this->getacl("gotoProfileQuota")); /* HANDLE Profile Settings here * Assign available Quota and resolution settings @@ -1074,10 +1071,9 @@ class environment extends plugin /* Get all Posted vars * Setup checkboxes */ - $WriteOnly = (!isset($this->parent)|| !$this->parent) && !session::is_set('edit'); if(isset($_POST['iamposted'])){ - $PACL = $this->getacl("gotoProfileServer",$WriteOnly).$this->getacl("gotoProfileQuota",$WriteOnly); + $PACL = $this->getacl("gotoProfileServer").$this->getacl("gotoProfileQuota"); if(isset($_POST['kiosk_server'])){ $tmp = $_POST['kiosk_server'];