From 9979974199ce7b2c0d9f6c7b6636138c9a45a8b3 Mon Sep 17 00:00:00 2001 From: cajus Date: Tue, 6 May 2008 06:30:14 +0000 Subject: [PATCH] Added tooltips git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10776 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../goto/addons/goto/class_gotomasses.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gosa-plugins/goto/addons/goto/class_gotomasses.inc b/gosa-plugins/goto/addons/goto/class_gotomasses.inc index 1e3bf689e..ef1efbfb6 100644 --- a/gosa-plugins/goto/addons/goto/class_gotomasses.inc +++ b/gosa-plugins/goto/addons/goto/class_gotomasses.inc @@ -385,9 +385,9 @@ class gotomasses extends plugin */ if(in_array($task['STATUS'],array("waiting"))){ $prio_actions.= " "; + title='"._("Move up")."' name='prio_up_".$key."'> "; $prio_actions.= " "; + title='"._("Move down")."' name='prio_down_".$key."'> "; } /* If WAITING add pause action @@ -408,21 +408,21 @@ class gotomasses extends plugin */ if(in_array($task['STATUS'],array("paused","waiting"))){ $prio_actions.= " "; + title='"._("Execute now")."' name='execute_process_".$key."'> "; } /* Add logview button, currently ever. */ if(TRUE){ $action .= " "; + class='center' title='"._("View logs")."' alt='"._("Log view")."'> "; } /* If PAUSED or WAITING add edit action */ if(in_array($task['STATUS'],array("waiting"))){ $action.= ""; + class='center' title='"._("Edit")."' alt='"._("Edit")."'>"; } /* If PROCESSING add abort action @@ -430,18 +430,18 @@ class gotomasses extends plugin if(in_array($task['STATUS'],array("processing")) && preg_match("/install/",$task['HEADERTAG'])){ $action.= ""; $action.= ""; + title='"._("Abort job")."' name='abort_process_".$key."'>"; } /* If WAITING or ERROR add remove action */ if( $this->acl_is_removeable() && in_array($task['STATUS'],array("waiting","error","processed"))){ $action.= ""; + class='center' title='"._("Remove")."' alt='"._("Remove")."'>"; } if(in_array($task['STATUS'],array("processing")) && !preg_match("/install/",$task['HEADERTAG'])){ $action.= ""; + class='center' title='"._("Remove")."' alt='"._("Remove")."'>"; } /* Create entry display name and tooltip */ -- 2.30.2