Commit 6e3128997e85a73ed15017a49a95536a67a686d9
1 parent
1971ff9f
Updated images
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@758 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
3 changed files
with
7 additions
and
5 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/collaborationUI.inc
| @@ -60,7 +60,7 @@ function getDocumentRoutingPage($iGroupID, $iUserID, $iRoleID, $iSequenceNumber, | @@ -60,7 +60,7 @@ function getDocumentRoutingPage($iGroupID, $iUserID, $iRoleID, $iSequenceNumber, | ||
| 60 | "<td colspan=\"2\"> </td>\n" . | 60 | "<td colspan=\"2\"> </td>\n" . |
| 61 | "</tr>\n" . | 61 | "</tr>\n" . |
| 62 | "<tr>\n" . | 62 | "<tr>\n" . |
| 63 | - "<td><b><input type=\"submit\" value=\"Submit\" /></b></td><td><a href=\"$default->owl_root_url/control.php?action=viewDocument&fDocumentID=$fDocumentID \">Cancel</a></td>\n" . | 63 | + "<td><b><input type=\"image\" src=\"$default->owl_graphics_url\widgets\update.gif\" /></b></td><td><a href=\"$default->owl_root_url/control.php?action=viewDocument&fDocumentID=$fDocumentID \"><img src=\"$default->owl_graphics_url\widgets\cancel.gif\"></a></td>\n" . |
| 64 | "</tr>\n" . | 64 | "</tr>\n" . |
| 65 | "</table>\n"; | 65 | "</table>\n"; |
| 66 | } | 66 | } |
presentation/lookAndFeel/knowledgeTree/documentmanagement/emailUI.inc
| @@ -35,6 +35,7 @@ function getEmailPage($oDocument) { | @@ -35,6 +35,7 @@ function getEmailPage($oDocument) { | ||
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | function getDocumentEmailPage($oDocument) { | 37 | function getDocumentEmailPage($oDocument) { |
| 38 | + global $default; | ||
| 38 | $sToRender = getDocumentPath($oDocument) . "\n<br>\n"; | 39 | $sToRender = getDocumentPath($oDocument) . "\n<br>\n"; |
| 39 | $sToRender .= "<table>\n"; | 40 | $sToRender .= "<table>\n"; |
| 40 | $sToRender .= "<th colspan=\"2\" align=\"left\">Email details</th>\n"; | 41 | $sToRender .= "<th colspan=\"2\" align=\"left\">Email details</th>\n"; |
| @@ -42,7 +43,7 @@ function getDocumentEmailPage($oDocument) { | @@ -42,7 +43,7 @@ function getDocumentEmailPage($oDocument) { | ||
| 42 | $sToRender .= "<tr><td>Recipient name:</td><td><input type=\"text\" name=\"fToName\" /></td></tr>\n"; | 43 | $sToRender .= "<tr><td>Recipient name:</td><td><input type=\"text\" name=\"fToName\" /></td></tr>\n"; |
| 43 | $sToRender .= "<tr><td>Email address:</td><td><input type=\"text\" name=\"fToEmail\" /></td></tr>\n"; | 44 | $sToRender .= "<tr><td>Email address:</td><td><input type=\"text\" name=\"fToEmail\" /></td></tr>\n"; |
| 44 | $sToRender .= "<tr><td> </td><td> </td></tr>\n"; | 45 | $sToRender .= "<tr><td> </td><td> </td></tr>\n"; |
| 45 | - $sToRender .= "<tr><td><input type=\"submit\" value=\"Send link\"</td><td> </td></tr>\n"; | 46 | + $sToRender .= "<tr><td><input type=\"image\" src=\"$default->owl_graphics_url\widgets\email.gif\" /></td><td> </td></tr>\n"; |
| 46 | $sToRender .= "</table>\n"; | 47 | $sToRender .= "</table>\n"; |
| 47 | return $sToRender; | 48 | return $sToRender; |
| 48 | } | 49 | } |
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc
| @@ -148,9 +148,10 @@ function getEditPage($oDocument) { | @@ -148,9 +148,10 @@ function getEditPage($oDocument) { | ||
| 148 | $sToRender .= "</table>\n"; | 148 | $sToRender .= "</table>\n"; |
| 149 | $sToRender .= "<table>\n"; | 149 | $sToRender .= "<table>\n"; |
| 150 | $sToRender .= "<tr>\n"; | 150 | $sToRender .= "<tr>\n"; |
| 151 | - $sToRender .= "<td><input type=\"submit\" value=\"Edit\"></td>\n"; | ||
| 152 | - $sToRender .= "<td><a href=\"" . $_SERVER["PHP_SELF"] . "?fDocumentID=" . $oDocument->getID() . "&fForDownload=1\">Download</a></td>\n"; | ||
| 153 | - $sToRender .= "<td><a href=\"$default->owl_root_url/control.php?action=emailDocument&fDocumentID=" . $oDocument->getID() . "\">Email link</a></td>\n"; | 151 | + //$sToRender .= "<td><input type=\"image\" srcvalue=\"Edit\"></td>\n"; |
| 152 | + $sToRender .= "<td><input type=\"image\" src=\"$default->owl_graphics_url/widgets/edit.gif\"></td>\n"; | ||
| 153 | + $sToRender .= "<td><a href=\"" . $_SERVER["PHP_SELF"] . "?fDocumentID=" . $oDocument->getID() . "&fForDownload=1\"><img src=\"$default->owl_graphics_url/widgets/download.gif\" /></a></td>\n"; | ||
| 154 | + $sToRender .= "<td><a href=\"$default->owl_root_url/control.php?action=emailDocument&fDocumentID=" . $oDocument->getID() . "\"><img src=\"$default->owl_graphics_url/widgets/email.gif\" /></a></td>\n"; | ||
| 154 | $sToRender .= "</tr>\n"; | 155 | $sToRender .= "</tr>\n"; |
| 155 | $sToRender .= "</table>\n"; | 156 | $sToRender .= "</table>\n"; |
| 156 | 157 |