1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<%@ page import="java.util.Iterator" %>
<%-- Menu Layout
This layout render a menu with links.
It takes as parameter the title, and a list of items. Each item is a bean with following properties :
value, href, icon, tooltip.
@param title Menu title
@param items list of items. Items are beans whith following properties :
--%>
<%-- Push tiles attributes in page context --%>
<tiles:importAttribute />
<table>
<logic:present name="title">
<tr>
<th colspan=2>
<div align="left"><strong><tiles:getAsString name="title"/></strong></div>
</th>
</tr>
</logic:present>
<%-- iterate on items list --%>
<logic:iterate id="item" name="items" type="org.apache.struts.tiles.beans.MenuItem" >
<% // Add site url if link start with "/"
String link = item.getLink();
if(link.startsWith("/") ) link = request.getContextPath() + link;
%>
<tr>
<td width="10" valign="top" ></td>
<td valign="top" >
<font size="-1"><a href="<%=link%>">
<logic:notPresent name="item" property="icon"><%=item.getValue()%></logic:notPresent>
<logic:present name="item" property="icon">
<% // Add site url if link start with "/"
String icon = item.getIcon();
if(icon.startsWith("/") ) icon = request.getContextPath() + icon;
%>
<img src='<%=request.getContextPath()%><bean:write name="item" property="icon" scope="page"/>'
alt='<bean:write name="item" property="tooltip" scope="page" ignore="true"/>' /></logic:present></a>
</font>
</td>
</tr>
</logic:iterate>
</table>
|