summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aef3764)
raw | patch | inline | side by side (parent: aef3764)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 27 May 2008 12:16:53 +0000 (12:16 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 27 May 2008 12:16:53 +0000 (12:16 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11032 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/applications/class_divListApplication.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/applications/class_divListApplication.inc b/gosa-plugins/goto/admin/applications/class_divListApplication.inc
index 5a4d449c10721b7988e0569fda780d08217153ac..54b9b9a06aeb37cfa5e301de1661c659ed4a250a 100644 (file)
/* Get acls */
$ui = get_userinfo();
- $acl = $ui->get_permissions("cn=dummy,".$this->parent->app_base,"application/application");
+ $acl = $ui->get_permissions($this->selectedBase,"application/application");
$acl_all = $ui->has_complete_category_acls($this->parent->app_base,"application");
/* Create Layers menu */
$s = ".|"._("Actions")."|\n";
- $s .= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
- " "._("Create")."|\n";
/* Append create options */
if(preg_match("/c/",$acl)) {
+ $s .= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
+ " "._("Create")."|\n";
$s.= "...|<input class='center' type='image' src='images/list_new_app' alt=''>".
" "._("Application")."|appl_new|\n";
}
$s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
" "._("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.= "..|<img src='images/lists/copy.png' alt='' border='0' class='center'>".
" "._("Copy")."|"."multiple_copy_systems|\n";
- $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
- " "._("Cut")."|"."multiple_cut_systems|\n";
-
- if($this->parent->CopyPasteHandler->entries_queued()){
- $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
- $s.="..|".$img." "._("Paste")."|editPaste|\n";
- }else{
- $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
- $s.="..|".$img." "._("Paste")."\n";
+ if(is_object($this->parent->CopyPasteHandler) && preg_match("/(r.*d|d.*r)/",$acl_all)){
+ $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
+ " "._("Cut")."|"."multiple_cut_systems|\n";
}
}
+ /* Copy & paste icons */
+ if(is_object($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler->entries_queued()){
+ $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
+ $s.="..|".$img." "._("Paste")."|editPaste|\n";
+ }else{
+ $img = "<img border='0' class='center' src='images/lists/paste-grey.png' alt=''>";
+ $s.="..|".$img." "._("Paste")."\n";
+ }
+
/* Add snapshot icons */
if(preg_match("/(c.*w|w.*c)/",$acl_all)){
$s .= "..|---|\n";
$actions= "";
/* Add Copy & Paste icon */
- if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
- /* Only add cut icon, if we are allowed to move this user */
- if(preg_match("/m/",$acl)){
- $actions.= "<input class='center' type='image'
- src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
-
- $actions.= "<input class='center' type='image'
- src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'> ";
- }
+ if(preg_match("/(r.*d|r.*d)/",$acl_all) && $this->parent->CopyPasteHandler){
+ $actions .= "<input class='center' type='image'
+ src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
+ }else{
+ $actions.="<img src='images/empty.png' alt=' ' class='center'> ";
+ }
+
+ if(preg_match("/r/",$acl_all) && $this->parent->CopyPasteHandler){
+ $actions.= "<input class='center' type='image'
+ src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'> ";
+ }else{
+ $actions.="<img src='images/empty.png' alt=' ' class='center'> ";
}
/* Add edit icon */
$actions.= "<input class='center' type='image'
src='images/lists/edit.png' alt='"._("edit")."' name='appl_edit_%KEY%' title='"._("Edit this entry")."'>";
-
- if(preg_match("/(c.*w|w.*c)/",$acl_all)){
+ /* Add snapshot icon */
+ if(preg_match("/(r.*w|w.*r)/",$acl_all)){
$actions.= $this->GetSnapShotActions($val['dn']);
+ }else{
+ $actions.="<img src='images/empty.png' alt=' ' class='center'> ";
+ $actions.="<img src='images/empty.png' alt=' ' class='center'> ";
}
/* If we are allowed to remove the application account, display remove icon */