LetoDMS Community Forum
Locked file in folder view - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: Customization (https://community.letodms.com/forumdisplay.php?fid=5)
+--- Forum: Addons/Mods (https://community.letodms.com/forumdisplay.php?fid=14)
+--- Thread: Locked file in folder view (/showthread.php?tid=216)



Locked file in folder view - calcumat - 01-09-2011

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:
  • copy attached lock.png to out/images : [ATTACHMENT NOT FOUND]

  • add new text item ("lock_by") to language file:
    PHP Code:
    $text["lock_by"] = "Locked by"
    [ATTACHMENT NOT FOUND]

  • apply the patch to file out/out.ViewFolder.php:
    After line 125 ($status = $latestContent->getStatus();) , add line:
    PHP Code:
    $doc_obj getDocument($docID); 
    Change line 136 (print "<td>".getOverallStatusText($status["status"])."</td>";) to:
    PHP Code:
        print "<td>";
        if ( 
    $doc_obj->isLocked() ) {
            print 
    "<img src=\"".UI::getImgPath("lock.png")."\" title=\""getMLText("lock_by").": ".$doc_obj->getLockingUser()->getFullName()."\"> ";
        }
        print 
    getOverallStatusText($status["status"])."</td>"
    [ATTACHMENT NOT FOUND]



RE: Locked file in folder view - augusto - 04-08-2011

(01-09-2011, 02:22 AM)calcumat Wrote: 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" - ).

To implement modification:
  • copy attached lock.png to out/images :

  • add new text item ("lock_by") to language file:
    PHP Code:
    $text["lock_by"] = "Locked by"


  • apply the patch to file out/out.ViewFolder.php:
    After line 125 ($status = $latestContent->getStatus();) , add line:
    PHP Code:
    $doc_obj getDocument($docID); 
    Change line 136 (print "<td>".getOverallStatusText($status["status"])."</td>";) to:
    PHP Code:
        print "<td>";
        if ( 
    $doc_obj->isLocked() ) {
            print 
    "<img src=\"".UI::getImgPath("lock.png")."\" title=\""getMLText("lock_by").": ".$doc_obj->getLockingUser()->getFullName()."\"> ";
        }
        print 
    getOverallStatusText($status["status"])."</td>"


Hello Friend,

We implement this script that you passed, but nothing happened, no error has! I wonder if you have any class that needs to be placed, or which version of the system that applies?

Thank you for your attention,

Augusto



RE: Locked file in folder view - steinm - 04-08-2011

(01-09-2011, 02:22 AM)calcumat Wrote: 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" - ).

To implement modification:
  • copy attached lock.png to out/images :

  • add new text item ("lock_by") to language file:
    PHP Code:
    $text["lock_by"] = "Locked by"


  • apply the patch to file out/out.ViewFolder.php:
    After line 125 ($status = $latestContent->getStatus();) , add line:
    PHP Code:
    $doc_obj getDocument($docID); 
    Change line 136 (print "<td>".getOverallStatusText($status["status"])."</td>";) to:
    PHP Code:
        print "<td>";
        if ( 
    $doc_obj->isLocked() ) {
            print 
    "<img src=\"".UI::getImgPath("lock.png")."\" title=\""getMLText("lock_by").": ".$doc_obj->getLockingUser()->getFullName()."\"> ";
        }
        print 
    getOverallStatusText($status["status"])."</td>"


Thanks. Very usefull patch. It won't make into 3.0.0 but the following release will have it.

Uwe