mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 12:11:19 +00:00
- show lock in Folder list of document is locked
This commit is contained in:
parent
5051bb80dc
commit
dcd17cfddb
BIN
out/images/lock.png
Normal file
BIN
out/images/lock.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 732 B |
|
@ -126,7 +126,11 @@ foreach($documents as $document) {
|
|||
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$docID."&showtree=".$showtree."\">" . $document->getName() . "</a></td>\n";
|
||||
print "<td>".$owner->getFullName()."</td>";
|
||||
print "<td>".getOverallStatusText($status["status"])."</td>";
|
||||
print "<td>";
|
||||
if ( $document->isLocked() ) {
|
||||
print "<img src=\"".UI::getImgPath("lock.png")."\" title=\"". getMLText("locked_by").": ".$document->getLockingUser()->getFullName()."\"> ";
|
||||
}
|
||||
print getOverallStatusText($status["status"])."</td>";
|
||||
print "<td>".$version."</td>";
|
||||
print "<td>".$comment."</td>";
|
||||
print "</tr>\n";
|
||||
|
|
Loading…
Reference in New Issue
Block a user