summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b9bf255)
raw | patch | inline | side by side (parent: b9bf255)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 19 May 2008 10:32:20 +0000 (10:32 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 19 May 2008 10:32:20 +0000 (10:32 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10947 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/addons/goto/class_gotomasses.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/addons/goto/class_gotomasses.inc b/gosa-plugins/goto/addons/goto/class_gotomasses.inc
index ef1efbfb6af798b19cc0b0769a72b31de6ef8a71..5aa837e6c5c2ec8c6f2a17da1205895692102edb 100644 (file)
}
if(preg_match("/w/",$this->getacl(""))){
$s.= "..|---|\n";
- $s.= "..|<img src='images/status_start.png' alt='' border='0' class='center'> "._("Resume")."|resume_all\n";
- $s.= "..|<img src='images/status_pause.png' alt='' border='0' class='center'> "._("Pause")."|pause_all\n";
- $s.= "..|<img src='images/small_error.png' alt='' border='0' class='center'> "._("Abort")."|abort_process_all\n";
- $s.= "..|<img src='images/rocket.png' alt='' border='0' class='center'> "._("Execute")."|execute_process_all\n";
+ $s.= "..|<img alt='"._("Resume")."' src='images/status_start.png' border='0' class='center'> "._("Resume")."|resume_all\n";
+ $s.= "..|<img alt='"._("Pause")."' src='images/status_pause.png' border='0' class='center'> "._("Pause")."|pause_all\n";
+ $s.= "..|<img alt='"._("Abort")."' src='images/small_error.png' border='0' class='center'> "._("Abort")."|abort_process_all\n";
+ $s.= "..|<img alt='"._("Execute")."' src='images/rocket.png' border='0' class='center'> "._("Execute")."|execute_process_all\n";
}
$divlist->SetDropDownHeaderMenu($s);
/* If PROCESSING add abort action
*/
if(in_array($task['STATUS'],array("processing")) && preg_match("/install/",$task['HEADERTAG'])){
- $action.= "<img src='images/empty.png'>";
+ $action.= "<img src='images/empty.png' alt=''>";
$action.= "<input class='center' type='image' src='images/small_error.png'
title='"._("Abort job")."' name='abort_process_".$key."'>";
}
/* Real percent */
} else {
if (preg_match('/install/', $task['HEADERTAG'])){
- $status = "<img src='progress.php?x=80&y=13&p=".$percent."' alt='".$percent." %'>";
+ $status = "<iframe style='border:0px;width:80px;height:13px; margin:0px; padding:0px;'
+ src='getFAIstatus.php?mac=".$task['MACADDRESS']."'>
+ </iframe>";
} else {
$status = preg_replace('/ /', ' ', _("in progress"));
}