Foros de discusión

Calendar Portlet: Event notification

Firas BD, modificado hace 11 años.

Calendar Portlet: Event notification

Junior Member Mensajes: 43 Fecha de incorporación: 3/10/11 Mensajes recientes
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, modificado hace 11 años.

RE: Calendar Portlet: Event notification

Liferay Legend Mensajes: 3089 Fecha de incorporación: 28/10/08 Mensajes recientes
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, modificado hace 11 años.

RE: Calendar Portlet: Event notification

Junior Member Mensajes: 43 Fecha de incorporación: 3/10/11 Mensajes recientes
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, modificado hace 11 años.

RE: Calendar Portlet: Event notification

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
Liferay has moved their source code from svn to github.
https://github.com/brianchandotcom/liferay-plugins/tree/master/portlets/enterprise-calendar-portlet
Matthew Dixon, modificado hace 11 años.

RE: Calendar Portlet: Event notification

New Member Mensajes: 7 Fecha de incorporación: 19/07/12 Mensajes recientes
Is it possible to test the Enterprise calendar on a portal v 6.1.1 installation?
Chintan Akhani, modificado hace 11 años.

RE: Calendar Portlet: Event notification

Regular Member Mensajes: 111 Fecha de incorporación: 13/03/08 Mensajes recientes
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.