summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a4f5610)
raw | patch | inline | side by side (parent: a4f5610)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 28 Mar 2007 10:18:54 +0000 (10:18 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 28 Mar 2007 10:18:54 +0000 (10:18 +0000) |
Removed edited info
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5912 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5912 594d385d-05f5-0310-b6e9-bd551577e9d8
include/sieve/class_sieveManagement.inc | patch | blob | history |
index 0ac0afe15bac35f51bab7b5547200ba86b3c5ce4..15606ce3d955dfcc764b9931425fb8e38af2d6b6 100644 (file)
$field1 = array("string" => " ",
"attach" => "style='width:20px;'");
if($active){
- $field1 = array("string" => "<img src='images/true.png' alt='"._("Active")."'>",
+ $field1 = array("string" => "<img src='images/true.png' alt='"._("Active")."'
+ title='"._("This script is marked as active")."'>",
"attach" => "style='width:20px;'");
}
$field2 = array("string" => $script['NAME']);
$field3 = array("string" => $script['MSG']);
$field4 = array("string" => _("Script length")." : ".strlen($script['SCRIPT']));
- if($edited){
- $field5 = array("string" => "<img src='images/fai_new_hook.png' alt='"._("Edited")."'>",
- "attach" => "style='width:30px;'");
- }else{
- $field5 = array("string" => "",
- "attach" => "style='width:30px;'");
- }
-
if($this->parent->acl_is_writeable("sieveManagement")){
- $del = "<input type='image' name='delscript_".$key."' src='images/edittrash.png'>";
+ $del = "<input type='image' name='delscript_".$key."' src='images/edittrash.png'
+ title='"._("Remove script")."'>";
}else{
$del = "<img src='images/empty' alt=' '>";
}
if($active || $script['IS_NEW'] || !$this->parent->acl_is_writeable("sieveManagement")){
$activate = "<img src='images/empty' alt=' '>";
}else{
- $activate = "<input type='image' name='active_script_".$key."' src='images/true.png'>";
+ $activate = "<input type='image' name='active_script_".$key."' src='images/true.png'
+ title='"._("Activate script")."'>";
}
- $field6 = array("string" => $activate."<input type='image' name='editscript_".$key."' src='images/edit.png'>".$del);
- $List ->AddEntry(array($field1,$field2,$field3,$field4,$field5,$field6));
+ $field6 = array("string" => $activate."<input type='image' name='editscript_".$key."' src='images/edit.png'
+ title='"._("Edit script")."'>".$del,
+ "attach" => "style='border-right:0px; width:70px;'");
+ $List ->AddEntry(array($field1,$field2,$field3,$field4,$field6));
}
$display ="<h2>Sieve script management</h2>";