Code

Updated icons
[gosa.git] / gosa-plugins / systems / admin / systems / class_divListSystemService.inc
index ab64a6a04554fda33cb203548cbb9c6f66a2e45e..77e592603321a2076880cf508f492a2a9c8b3794 100644 (file)
@@ -58,7 +58,7 @@ class divListSystemService extends MultiSelectWindow
        which are shown in the listbox on top of the listbox
      */
     $listhead = "<div style='background:#F0F0F9;height:16px;padding:0px;'>".
-    " <input type='image' align='middle' src='images/select_new_server.png' class='center' 
+    " <input type='image' align='middle' src='plugins/systems/images/select_new_server.png' class='center' 
         name='addNewService' alt='"._("Add service")."' title='"._("Add new service")."'>&nbsp;".
     " <img class='center' src='images/lists/seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
     " <input type='image' align='middle' src='images/status_start_all.png' class='center'
@@ -96,10 +96,10 @@ class divListSystemService extends MultiSelectWindow
  
       switch($entry['Status']){
         case ''      : $str ="&nbsp;";break;
-        case SERVICE_STOPPED  : $str ="<img src='images/status_stopped.png' title='"._("Stopped")."'>"; break;
-        case SERVICE_STARTED  : $str ="<img src='images/status_running.png' title='"._("Started")."'>"; break;
+        case SERVICE_STOPPED  : $str ="<img src='images/lists/off.png' title='"._("Stopped")."'>"; break;
+        case SERVICE_STARTED  : $str ="<img src='images/lists/on.png' title='"._("Started")."'>"; break;
         case SERVICE_RESTARTED : $str ="<img src='images/status_restarting.png' title='"._("Restarting")."' alt='R'>"; break;
-        default: $str= "<img src='images/select_user.png' alt='".$entry['Status']."' title='"._("User status")." : ".$entry['Status']."'>";
+        default: $str= "<img src='plugins/users/images/select_user.png' alt='".$entry['Status']."' title='"._("User status")." : ".$entry['Status']."'>";
       }
 
       /* Get acls */
@@ -123,13 +123,13 @@ class divListSystemService extends MultiSelectWindow
       }else{
         $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
-      if($entry['AllowStart'] && $WasAccount){
+      if($entry['AllowStop'] && $WasAccount){
         $actions .= "&nbsp;<input type='image' name='StopSingleService_".$name."' src='images/status_stop.png'
                             title='"._("Stop service")."'>";
       }else{
         $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
-      if($entry['AllowStart'] && $WasAccount){
+      if($entry['AllowRestart'] && $WasAccount){
         $actions .= "&nbsp;<input type='image' name='RestartSingleService_".$name."' src='images/lists/reload.png'
                             title='"._("Restart service")."'>";
       }else{
@@ -138,7 +138,7 @@ class divListSystemService extends MultiSelectWindow
 
       /* Check if edit is enabled and allowed for current service */
       if($entry['AllowEdit'] && preg_match("/(r|w)/i",$acl)){
-        $actions .= "&nbsp;<input type='image' name='EditSingleService_".$name."' src='images/edit.png'
+        $actions .= "&nbsp;<input type='image' name='EditSingleService_".$name."' src='images/lists/edit.png'
                             title='"._("Edit service")."'>";
       }else{
         $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";