掲示板

Liferay 6.1 Add images to folder

12年前 に Nagaraja Chokkavarapu によって更新されました。

Liferay 6.1 Add images to folder

Junior Member 投稿: 39 参加年月日: 09/09/14 最新の投稿
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
12年前 に Mika Koivisto によって更新されました。

RE: Liferay 6.1 Add images to folder

Liferay Legend 投稿: 1519 参加年月日: 06/08/07 最新の投稿
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().
12年前 に Nagaraja Chokkavarapu によって更新されました。

RE: Liferay 6.1 Add images to folder

Junior Member 投稿: 39 参加年月日: 09/09/14 最新の投稿
Thanks a lot Mika.

Nagaraja
thumbnail
11年前 に Rose Walt によって更新されました。

RE: Liferay 6.1 Add images to folder

New Member 投稿: 12 参加年月日: 12/11/08 最新の投稿
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
11年前 に Henrique Simoes de Andrade によって更新されました。

RE: Liferay 6.1 Add images to folder

Regular Member 投稿: 165 参加年月日: 10/04/30 最新の投稿
I need that information too.
11年前 に Bradley Wood によって更新されました。

RE: Liferay 6.1 Add images to folder

thumbnail
11年前 に Henrique Simoes de Andrade によって更新されました。

RE: Liferay 6.1 Add images to folder

Regular Member 投稿: 165 参加年月日: 10/04/30 最新の投稿
Thank you!
A lot of work to do migrating from 6.0.5 to 6.1.1... emoticon
thumbnail
10年前 に Sergio Romero Zayas によって更新されました。

RE: Liferay 6.1 Add images to folder

Regular Member 投稿: 151 参加年月日: 08/04/14 最新の投稿
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.