nav_head_menus.jsp

来自「找了很久才找到到源代码」· JSP 代码 · 共 13 行

JSP
13
字号
<%@page buffer="none" session="false" import="org.opencms.frontend.templateone.*" %><%

// initialize action element to access the API
CmsTemplateNavigation cms = new CmsTemplateNavigation(pageContext, request, response);

// set the default property value to create head navigation menu items
// true: all folders and files without the property "style_head_nav_showitem" explicitly set will be shown in head navigation menu
// false: no folder or file without the property "style_head_nav_showitem" explicitly set will be shown in head navigation menu
cms.setHeadNavItemDefaultValue(true);

out.print(cms.buildNavigationHeadMenus("menu"));

%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?