Added 'View Attachments' if any in all popup view windows
[fa-stable.git] / includes / ui / ui_controls.inc
index 7934730c0629dfbb97f0d79739fe4cf4f52b9b3f..34c0431af503bf803d9af14f2ded1732e956d9b4 100644 (file)
@@ -143,14 +143,24 @@ function access_string($label, $clean=false)
        return $clean ? $label : array($label, $access);
 }
 
-function hyperlink_back($center=true, $no_menu=true)
+function hyperlink_back($center=true, $no_menu=true, $type_no=0, $trans_no=0)
 {
        if ($center)
                echo "<center>";
-       start_table("width=20%");
+       start_table("width=30%");
        start_row();
        if ($no_menu)
+       {
+               if ($type_no != 0 && $trans_no != 0)
+               {
+                       global $path_to_root;
+                       include_once($path_to_root."/admin/db/attachments_db.inc");
+                       $id = has_attachment($type_no, $trans_no);
+                       if ($id != 0)
+                               echo "<td align=center><a href='$path_to_root/admin/attachments.php?vw=$id' target='blanc_'>"._("View Attachment")."</a></td>\n";
+               }       
                echo "<td align=center><a href='javascript:window.print();'>"._("Print")."</a></td>\n";
+       }       
        echo "<td align=center><a href='javascript:goBack();'>".($no_menu ? _("Close") : _("Back"))."</a></td>\n";
        end_row();
        end_table();