I'm trying to use a Web content Display to show all the files in a particular folder of document library.

I would like to keep customize the choice of the folder.

Do you know if exist a dynamic element in template that point to a folder not to a specific field in the document library?

If is not possible someone know a different way to do that?

thanks in advance

Sabrina

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can create structure that holds text field for folderId named "folderId".

Than create template

#set($service = $serviceLocator.findService("com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService"))
#set($gid = $getterUtil.getLong($request.get("theme-display").get("scope-group-id")))
#set($fid = $getterUtil.getLong($folderId.getData()))

#set($files = $service.getFileEntries($gid, $fid))

#foreach($doc in $files)
    #set($uet = $httpUtil.encodeURL($htmlUtil.unescape($doc.getTitle())))
    <a href="/documents/$gid/$fid/$uet">$doc.getTitle()</a><br />
#end

Create article by that template/structure and enter folder id that you want to display. Add "Web content display" portlet that displays this article.

UPDATE:

For Liferay 6.1 method signature was changed and is

List<DLFileEntry>   getFileEntries(long groupId, long folderId, int start, int end, OrderByComparator obc) 

So for liferay 6.1 you should change call to be at least

#set($files = $service.getFileEntries($gid, $fid, -1, -1, null))

or change for start/end/sort.

link|improve this answer
Hi @Martin, Thank for your answer, It is exactly what I need but I still have a problem… I enabled “serviceLocator” in portal-ext.properties: journal.template.velocity.restricted.variables= so I checked that the service is loaded using “$service.getBeanIdentifier()” but the $files= $service.getFileEntries($gid, $fid) variable is always null. I tried to call files with the path that you suggested me “/documents/gid/fid/name” and they exist. Any ideas? Thanks a lot. Sabrina – user1216208 Feb 20 at 10:48
enter folowing in template after service call: "service = $service<br/>gid = $gid<br/>fid = $fid<br/>" without quotes. Let me now results – Martin Gamulin Feb 20 at 10:54
service = com.liferay.portlet.documentlibrary.service.impl.DLFileEntryLocalServiceImpl@400‌​ac3 gid = 19 fid = 13637 – user1216208 Feb 20 at 11:05
Ok, so it can only be that your folder does not exists or is in another group (group id is not 19) Can you check that that folder exists and has files. Is your folder in the same comunity. Above script assumes that it is [$request.get("theme-display").get("scope-group-id"))] if not add another field in your structure and template for groupId (gid). – Martin Gamulin Feb 20 at 11:39
I tried to open a files from browser under the same path /documents/19/13637/prova.png and I found it, but if I force to get the same files from template #set($files = $service.getFileEntries(19, 13637)) and I print files.size() it return 0. Do you have any other ideas why it has not to found it? Tnx – user1216208 Feb 20 at 12:45
show 6 more comments
feedback

You could use the Document Library Display portlet to accomplish this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.