1
vote
1answer
299 views

Redirect to page in liferay Login

I am creating a Hook to check-user on login, and depending on some parameters it will be redirected to one custom page or another. I am doing this: Portal.properties #Gestion evento login ...
0
votes
1answer
119 views

Context path not working in liferay Hook

I am creating a hook in which i want to add my image in custom jsp. I have added image inside docroot/images/1.jpg in jsp i am trying to access it using <img ...
0
votes
2answers
310 views

Creating additional validation steps for user registrarion in Liferay

I'm trying to add some validation steps to the user registration process in Liferay, but can't seem to find the right place to do so. As far as I know, there's no event where I could add my own code ...
1
vote
1answer
194 views

Creating a “login.events.pre” hook in liferay

I'm very new to liferay and am creating a hook on the login.events.pre event. My users will be signing in to the website by using their phone number, so I have to do some validations on the status of ...
1
vote
2answers
165 views

Liferay Document Library: execute method on document download

I've asked the same question in Liferay community but with no answers so I try here :) I need to perform an action/call a method everytime a user download a file from the document library, for ...
1
vote
1answer
251 views

How to override property “sites.email.membership.reply.body” in liferay

I want override the following properties in my portal-ext.properties: sites.email.membership.reply.subject=com/liferay/portlet/sites/dependencies/email_membership_reply_subject.tmpl ...
0
votes
0answers
413 views

Liferay - Servlet Filter Hook not working properly

I am trying to develop a Servlet Filter Hook. I have two versions of this hook. First version only contains some JSPs that I need to hook but the second version contains an additional Servlet Filter ...
1
vote
1answer
221 views

Is it possible to use Spring @Autowired in Liferay hook?

I wonder if it is possible to have a bean form xml file injected by @Autowired somehow into Liferay hook. In this particular case I'm using UpgradeProcess hook. My project is already configured for ...
0
votes
1answer
374 views

Liferay: SEVERE: Unable to initialize PropsUtil java.lang.NullPointerException

I'm trying to add a hook to Liferay user post login action, so I've created liferay-hook.xml pointing portal.properties, which points my class: public class PostLoginActionHook extends Action { ...
0
votes
1answer
586 views

liferay hook deployment - event class not found exception

I create a hook plugin with liferay-sdk-6.0.6 and define a servlet.service.events.pre event handler : <service> <service-type>servlet.service.events.pre</service-type> ...
0
votes
1answer
713 views

Overriding Liferay JSP using a hook

I'm trying to override a JSP in Liferay 6.1, namely html/portlet/enterprise_admin/settings/authentication.jsp. I have created a hook (using Eclipse, if that matters) added ...
2
votes
1answer
445 views

how to create hook for LDAPAuth class in liferay 6.1

I am trying to hook LDAPAuth class in lliferay 6.1 to override the authenticateByEmailAddress to add some logic from my side. i am not sure how to define this in liferay-hook.xml <hook> ...
1
vote
2answers
1k views

adding custom methods in Hook environment?

i am adding a new method into CalEventLocalServiceImpl using hook... my code is .. public class MyCalendarLocalServiceImpl extends CalEventLocalServiceWrapper { public ...
0
votes
1answer
423 views

Liferay announcements portlet hook

I am trying to make a hook for the Liferay announcements portlet using the following code: package com.ahc.hook.service.impl; import com.liferay.portlet.announcements.*; public class ...
0
votes
1answer
251 views

How to make comment mandatory in Kaleo Workflow in Liferay 6.05?

I have created one workflow in my project. I am done with the workflow but i need to make some changes in that. In this when anyone click on Assign to Me button then it will display one pop-up for ...
0
votes
2answers
526 views

Problem making a Liferay Hook with Eclipse Liferay IDE - getting only empty project

I am using Eclipse Liferay IDE for making a hook to a Liferay native portlet. I mean a porlet that comes with default installation, eg. blogs, content management or similar. I have done the steps ...
0
votes
2answers
384 views

Liferay - Hook for GroupWrapper

I'm trying to override the getDescriptiveName() method in com.liferay.portal.model.Group I found a wrapper (com.liferay.portal.model.GroupWrapper), so I tried to write a hook as written in the ...