Foren

Liferay 6.1 Add images to folder

Nagaraja Chokkavarapu, geändert vor 12 Jahren.

Liferay 6.1 Add images to folder

Junior Member Beiträge: 39 Beitrittsdatum: 14.09.09 Neueste Beiträge
Hi,

In Liferay 6.1 following code is breaking.


IGImageLocalServiceUtil.addImage(userId, groupId, folderId, name, description, file, contentType, new ServiceContext());

IGImageLocalServiceUtil.getImages(groupId, folderId);



Looks like they replaced IGImageLocalServiceUtil with ImageLocalServiceUtil. But there is no method to add image OR get images from/to a specific folder. Does any one know how to do it?

Thanks,
Nagaraja
thumbnail
Mika Koivisto, geändert vor 12 Jahren.

RE: Liferay 6.1 Add images to folder

Liferay Legend Beiträge: 1519 Beitrittsdatum: 07.08.06 Neueste Beiträge
Both Image Gallery and Document Library were combined in 6.1 to Documents and Media and as a result of this rewrite all the APIs have changed. Now you should use DLAppServiceUtil.addFileEntry().
Nagaraja Chokkavarapu, geändert vor 12 Jahren.

RE: Liferay 6.1 Add images to folder

Junior Member Beiträge: 39 Beitrittsdatum: 14.09.09 Neueste Beiträge
Thanks a lot Mika.

Nagaraja
thumbnail
Rose Walt, geändert vor 11 Jahren.

RE: Liferay 6.1 Add images to folder

New Member Beiträge: 12 Beitrittsdatum: 08.11.12 Neueste Beiträge
Thanks Mika,

But how can we find such kind of information with out asking it in the forum? Could you point us to a documentation that has a list of classes that got replaced/moved/refactored/changed and where the corresponding functionality could be found?

say an old class C has a method foo() in package poo that was replaced class R and the method renamed to bar() in package boo.

How can we know of such migration? where is the central documenatation of the [mapping]
Note: I'm not asking API - i have both the old and the new API docs, I also have the old and the new code. How can i get what functionality is moved where?

Thanks,
Rose
thumbnail
Henrique Simoes de Andrade, geändert vor 11 Jahren.

RE: Liferay 6.1 Add images to folder

Regular Member Beiträge: 165 Beitrittsdatum: 30.04.10 Neueste Beiträge
I need that information too.
Bradley Wood, geändert vor 11 Jahren.

RE: Liferay 6.1 Add images to folder

thumbnail
Henrique Simoes de Andrade, geändert vor 11 Jahren.

RE: Liferay 6.1 Add images to folder

Regular Member Beiträge: 165 Beitrittsdatum: 30.04.10 Neueste Beiträge
Thank you!
A lot of work to do migrating from 6.0.5 to 6.1.1... emoticon
thumbnail
Sergio Romero Zayas, geändert vor 10 Jahren.

RE: Liferay 6.1 Add images to folder

Regular Member Beiträge: 151 Beitrittsdatum: 14.04.08 Neueste Beiträge
Bradley Wood:
Rose Walt:

But how can we find such kind of information with out asking it in the forum?


this has some api changes
http://www.liferay.com/community/wiki/-/wiki/Main/Upgrade+6.0+plugins+to+6.1


This information is insufficient.

For example:

In the past to add an image in Liferay 6.0.x was used ->
IGImage image = IGImageServiceUtil.addImage(groupId, folderId, name, description, file, contentType, serviceContext);

Now Mika says you have to use DLAppServiceUtil.addFileEntry. Apart from not return an object IGImage type, you need diferent parameters that were not previously used.

DLAppServiceUtil.addFileEntry (repositoryId, folderId, sourceFileName, mimeType, title, description, changelog, is, size, ServiceContext)

From where I get "repositoryId"?

Excuse my English is not good. But I believe many people think like me.