1
22
23 package com.liferay.portlet.journalcontentsearch.action;
24
25 import com.liferay.portal.kernel.language.LanguageUtil;
26 import com.liferay.portal.model.LayoutTypePortlet;
27 import com.liferay.portal.struts.PortletAction;
28 import com.liferay.portal.theme.ThemeDisplay;
29 import com.liferay.portal.util.WebKeys;
30 import com.liferay.portlet.PortletConfigImpl;
31
32 import javax.portlet.PortletConfig;
33 import javax.portlet.RenderRequest;
34 import javax.portlet.RenderResponse;
35
36 import org.apache.struts.action.ActionForm;
37 import org.apache.struts.action.ActionForward;
38 import org.apache.struts.action.ActionMapping;
39
40
46 public class SearchAction extends PortletAction {
47
48 public ActionForward render(
49 ActionMapping mapping, ActionForm form, PortletConfig config,
50 RenderRequest req, RenderResponse res)
51 throws Exception {
52
53 ThemeDisplay themeDisplay =
54 (ThemeDisplay)req.getAttribute(WebKeys.THEME_DISPLAY);
55
56 LayoutTypePortlet layoutTypePortlet =
57 themeDisplay.getLayoutTypePortlet();
58
59 PortletConfigImpl configImpl = (PortletConfigImpl)config;
60
61 String portletId = configImpl.getPortletId();
62
63 if (!layoutTypePortlet.hasPortletId(portletId)) {
64 res.setTitle(
65 LanguageUtil.get(
66 themeDisplay.getCompanyId(), themeDisplay.getLocale(),
67 "search"));
68 }
69
70 return mapping.findForward("portlet.journal_content_search.search");
71 }
72
73 }