Foren

Calendar Portlet: Event notification

Firas BD, geändert vor 11 Jahren.

Calendar Portlet: Event notification

Junior Member Beiträge: 43 Beitrittsdatum: 03.10.11 Neueste Beiträge
Hi,
I am working on liferay ce 6.1 bundled with tomcat 7.
I wanna know how to notify users of the portal when I am adding an event in the calendar portlet and I wanna invite them to this event.
Is it any way to send email or message and how to do that?
thumbnail
Juan Gonzalez P, geändert vor 11 Jahren.

RE: Calendar Portlet: Event notification

Liferay Legend Beiträge: 3089 Beitrittsdatum: 28.10.08 Neueste Beiträge
I guess Calendar portlet doesn't do that.

But there is a new portlet in progress (Enterprise Calendar) which surely would do it:

http://issues.liferay.com/browse/LPS-26069?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel#issue-tabs
Firas BD, geändert vor 11 Jahren.

RE: Calendar Portlet: Event notification

Junior Member Beiträge: 43 Beitrittsdatum: 03.10.11 Neueste Beiträge
thanks for reply Juan, but when I search for this entreprise calendar portlet, I couldn't find the war file to deploy it in my Liferay portal.
any suggestions or links from where I could download the war file ??
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: Calendar Portlet: Event notification

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
Liferay has moved their source code from svn to github.
https://github.com/brianchandotcom/liferay-plugins/tree/master/portlets/enterprise-calendar-portlet
Matthew Dixon, geändert vor 11 Jahren.

RE: Calendar Portlet: Event notification

New Member Beiträge: 7 Beitrittsdatum: 19.07.12 Neueste Beiträge
Is it possible to test the Enterprise calendar on a portal v 6.1.1 installation?
Chintan Akhani, geändert vor 11 Jahren.

RE: Calendar Portlet: Event notification

Regular Member Beiträge: 111 Beitrittsdatum: 13.03.08 Neueste Beiträge
Hi Firas BD,

you can achieve this by modifying CalLocalServiceImpl's remindUser() method using ext plugin.

If you want to send a notification to a specific group users then you just have to modify remindUser method. By default it just sends a notification to owner.

You can get the users of specific group by UserLocalServiceUtil.getGroupUsers(groupID) method, than iterate list of users in remindUser method to send a notification.