<%@ page import="org.atdf.uma.User"%> <%@ page import="com.hrmzone.util.JobUtil"%> <%@ page import="com.hrmzone.util.Message"%> <%@ page import="com.hrmzone.Constants"%> <%@ page import="com.hrmzone.ForwardConstants"%> <%@ page import="java.util.Locale"%> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <%@ page session="true" %> Overseas recruitment solutions provider and manpower agency in Bangladesh <% String wiz = (String) request.getAttribute(ForwardConstants.WIZARD); if (wiz == null || wiz.trim().length() == 0 ) { wiz = request.getParameter(ForwardConstants.WIZARD); } if (wiz == null) { wiz = "/index_body.jsp"; } User user = JobUtil.getSessionUser(session); int iZone = JobUtil.getUserZone(session); %>
<% if (iZone > 0) { %> <% } else { %> <% } %>
<% Message msg = (Message) request.getAttribute(Constants.MESSAGE_KEY); if (msg == null) { // try again msg = (Message) pageContext.getAttribute(Constants.MESSAGE_KEY); } if (msg != null && msg.isShown() == false) { %>
<% msg.setShown(true); } %>
<%-- right content or advert !! --%>
<%-- Include Footer jsp --%>
<%! private String getUserMenu(int zone) { String menuInclude = ""; if (Constants.SEEKER_ZONE_ID == zone) { menuInclude = "/jsp/default/seekersmenu.jsp"; } else if (Constants.EMPLOYER_ZONE_ID == zone) { menuInclude = "/jsp/employer/employersmenu.jsp"; } else if (Constants.AGENT_ZONE_ID == zone) { menuInclude = "/jsp/agent/agent_menu.jsp"; } return menuInclude; } %>