In standard, the fact that some file is locked is only visible in document view (of the locked file), which is not very usable.
This modification adds an icon of locked file in folder view and in the "title text" is the lock owner name (see "locked_file_preview" - [ATTACHMENT NOT FOUND] ).
To implement modification:
[ATTACHMENT NOT FOUND]This modification adds an icon of locked file in folder view and in the "title text" is the lock owner name (see "locked_file_preview" - [ATTACHMENT NOT FOUND] ).
To implement modification:
- copy attached lock.png to out/images : [ATTACHMENT NOT FOUND]
- add new text item ("lock_by") to language file:
PHP Code:<?php
$text["lock_by"] = "Locked by";
After line 125 ($status = $latestContent->getStatus();) , add line:
PHP Code:
<?php
$doc_obj = getDocument($docID);

