X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-plugins%2Fgoto%2Fadmin%2Fdevices%2Fclass_divListDevices.inc;h=0407757c67f1434f022dfe6eba1fb36b11520373;hb=097f70a0dd7525dcd6e02b33447d739ae3dc473b;hp=9d9e520e7881bf021466bf89b39bccedda01c91e;hpb=932c982f262f6076faf8ad6a29f06bdbb3ad309a;p=gosa.git diff --git a/gosa-plugins/goto/admin/devices/class_divListDevices.inc b/gosa-plugins/goto/admin/devices/class_divListDevices.inc index 9d9e520e7..0407757c6 100644 --- a/gosa-plugins/goto/admin/devices/class_divListDevices.inc +++ b/gosa-plugins/goto/admin/devices/class_divListDevices.inc @@ -42,7 +42,7 @@ class divListDevices extends MultiSelectWindow $this->EnableSaveButton (false); /* Toggle all selected / deselected */ - $chk = ""; /* set Page header */ @@ -128,40 +128,40 @@ class divListDevices extends MultiSelectWindow /* And at least add a department selection box */ $listhead .= _("Base")." ". - "  "; /* Create Layers menu */ $s = ".|"._("Actions")."|\n"; - $s .= "..|". - " "._("Create")."|\n"; /* Append create options */ if(preg_match("/c/",$acl)) { + $s .= "..|". + " "._("Create")."|\n"; $s.= "...|". " "._("Device")."|device_new|\n"; + $s.= "..|---|\n"; } /* Multiple options */ - $s.= "..|---|\n"; $s.= "..|". " "._("Remove")."|"."remove_multiple|\n"; - /* Add multiple copy & cut icons */ - if(is_object($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){ + if(is_object($this->parent->CopyPasteHandler) && preg_match("/r/",$acl_all)){ $s.= "..|---|\n"; $s.= "..|". " "._("Copy")."|"."multiple_copy_systems|\n"; $s.= "..|". " "._("Cut")."|"."multiple_cut_systems|\n"; + } - if($this->parent->CopyPasteHandler->entries_queued()){ - $img = ""; - $s.="..|".$img." "._("Paste")."|editPaste|\n"; - }else{ - $img = ""; - $s.="..|".$img." "._("Paste")."\n"; - } + /* Copy & paste icons */ + if(is_object($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler->entries_queued()){ + $img = ""; + $s.="..|".$img." "._("Paste")."|editPaste|\n"; + }else{ + $img = ""; + $s.="..|".$img." "._("Paste")."\n"; } /* Add snapshot icons */ @@ -193,7 +193,7 @@ class divListDevices extends MultiSelectWindow /* Create links */ $linkopen = "%s"; $editlink = "%s"; - $userimg = "User"; + $userimg = "User"; $deviceimg = "A"; $empty = ""; @@ -213,22 +213,31 @@ class divListDevices extends MultiSelectWindow $acl = $ui->get_permissions($val['dn'],"devices/deviceGeneric"); $acl_all = $ui->has_complete_category_acls($val['dn'],"devices") ; - /* Create action icons */ $actions = ""; - if(preg_match("/(c.*w|w.*c)/",$acl_all)){ - $actions .= $this->GetSnapShotActions($val['dn']); + if(preg_match("/(r.*d|r.*d)/",$acl_all) && $this->parent->CopyPasteHandler){ + $actions .= " "; + }else{ + $actions.="  "; } - /* Get copy Paste icons */ - if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){ - $actions.= " "; + if(preg_match("/r/",$acl_all) && $this->parent->CopyPasteHandler){ $actions.= " "; + }else{ + $actions.="  "; } $actions.= ""; + src='images/lists/edit.png' alt='"._("edit")."' name='device_edit_%KEY%' title='"._("Edit this entry")."'>"; + +# /* Add snapshot icon */ +# if(preg_match("/(r.*w|w.*r)/",$acl_all)){ +# $actions.= $this->GetSnapShotActions($val['dn']); +# }else{ +# $actions.="  "; +# $actions.="  "; +# } /* Add delete button */ if(preg_match("/d/",$acl)){