<%@ page contentType="text/html; charset=UTF-8"%> <%@ page import="org.apache.commons.lang.StringUtils" %> <%@ page import="com.csc.library.entry.HelpEntry,com.csc.library.system.*,com.csc.library.utilities.*"%> <%@ page import="com.csc.library.entry.*,com.csc.library.database.*,com.csc.library.session.*" %> <%@ page import="com.csc.library.utilities.UProfile" %> <%@ page import="com.csc.library.menu.Menu" %> <%@ page import="com.csc.library.menu.MenuList"%> <%@ page import="com.csc.library.menu.TreeMenu" %> <%@ page import="com.csc.library.menu.*" %> <%@ include file="../CHECKPROFILE.jsp" %> <jsp:useBean id="main" class="com.csc.library.system.Task" scope="page"/> <% main.setChannel(request,response); main.checkProfile(); UProfile u=main.getUProfile(); final Menu menu = new TreeMenu(MenuList.COMPANY.getMenu(), uprofile,MenuList.COMPANY.getAppname()); menu.setCssStyle("filetree"); String strMenu = menu.getMenu(); %> <!DOCTYPE html> <html ng-app="myHR"> <head> <title>myHR :> Company Information Module</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="../JS/jquery-2.1.3.min.js"></script> <script type='text/javascript' src="../JS/SCREEN.js"></script> <script type='text/javascript'>setLang("<%=u.get("lang")%>");</script> </head> <body> <div class="admin-header"> <jsp:include page="../ADMIN_HEAD_MENU.jsp" flush="true" /> </div> <div class="admin-left-menu" id=""> <div class="head-menu">Company Information</div> <%=strMenu%> </div> <iframe src="" name="mainFrame" id="mainFrame"></iframe> <jsp:include page="../MODULE_SELECT.jsp" flush="true" /> <form name="cscforms" id="cscforms" method="post"> <input type="hidden" name="modulename" id="modulename" value=""> <input type="hidden" name="modulepath" id="modulepath" value=""> <input type="hidden" name="linkaction" id="linkaction" value=""> <input type="hidden" name="__language" value="<%=uprofile.get("lang")%>"> </form> </body> </html>