Code

Moved folder image
[gosa.git] / gosa-core / plugins / admin / acl / class_divListACL.inc
index 7d7088ae96c5722b0b37eee305db3813e8adf713..fad49a5ae4734a7b58fe7e3a69695105f786a03c 100644 (file)
@@ -77,7 +77,7 @@ class divListACL extends MultiSelectWindow
     $this->set_filter_objectclasses();   
  
     /* Add SubSearch checkbox */
-    $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
+    $this->AddCheckBox("SubSearch",  msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
 
 
     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
@@ -168,22 +168,22 @@ class divListACL extends MultiSelectWindow
 
     /* Multiple options */
     $s.= "..|---|\n";
-    $s.= "..|<img src='images/edittrash.png' alt='' border='0' class='center'>".
+    $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
       "&nbsp;"._("Remove")."|"."remove_multiple|\n";
 
     /* Add multiple copy & cut icons */
     if(is_object($this->parent->CopyPasteHandler)){
       $s.= "..|---|\n";
-      $s.= "..|<img src='images/editcopy.png' alt='' border='0' class='center'>".
+      $s.= "..|<img src='images/lists/copy.png' alt='' border='0' class='center'>".
         "&nbsp;"._("Copy")."|"."multiple_copy_systems|\n";
-      $s.= "..|<img src='images/editcut.png' alt='' border='0' class='center'>".
+      $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
         "&nbsp;"._("Cut")."|"."multiple_cut_systems|\n";
 
       if($this->parent->CopyPasteHandler->entries_queued()){
-        $img = "<img border='0' class='center' src='images/editpaste.png' alt=''>";
+        $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
         $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
       }else{
-        $img = "<img border='0' class='center' src='images/cant_editpaste.png' alt=''>";
+        $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
         $s.="..|".$img."&nbsp;"._("Paste")."\n";
       }
     }
@@ -232,14 +232,14 @@ class divListACL extends MultiSelectWindow
         /* Add copy & paste handler */
         if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
           $action.= "<input class='center' type='image'
-            src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
+            src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
           $action.= "<input class='center' type='image'
-            src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
+            src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
         }
 
         /* Add actions depending on acls */
         if(preg_match("/r/", $acl)){
-          $action.= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'     
+          $action.= "<input class='center' type='image' src='images/lists/edit.png' alt='"._("edit")."'     
             name='list_acl_role_edit_%KEY%' title='"._("Edit acl role")."'>";
         }
 
@@ -249,7 +249,7 @@ class divListACL extends MultiSelectWindow
         }
 
         if(preg_match("/d/", $acl)){
-          $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' 
+          $action.= "<input class='center' type='image' src='images/lists/trash.png' alt='"._("delete")."' 
             name='list_acl_role_del_%KEY%' title='"._("Delete acl role")."'>";
         }
       }else{
@@ -261,11 +261,11 @@ class divListACL extends MultiSelectWindow
 
         /* Add actions depending on acls */
         if(preg_match("/r/", $acl)){
-          $action.= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'     
+          $action.= "<input class='center' type='image' src='images/lists/edit.png' alt='"._("edit")."'     
             name='list_acl_edit_%KEY%' title='"._("Edit acl")."'>";
         }
         if(preg_match("/d/", $acl)){
-          $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' 
+          $action.= "<input class='center' type='image' src='images/lists/trash.png' alt='"._("delete")."' 
             name='list_acl_del_%KEY%' title='"._("Delete acl")."'>";
         }
       }