themes/*: Added .hidden Flag
This commit is contained in:
parent
355ac6b1a2
commit
a8a1dad10a
3 changed files with 11 additions and 11 deletions
|
@ -86,7 +86,7 @@ end
|
||||||
<div id="mainmenu" class="mainmenu">
|
<div id="mainmenu" class="mainmenu">
|
||||||
<%-
|
<%-
|
||||||
local function submenu(prefix, node)
|
local function submenu(prefix, node)
|
||||||
if not node.nodes then
|
if not node.nodes or node.hidden then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
local index = {}
|
local index = {}
|
||||||
|
@ -104,7 +104,7 @@ local function submenu(prefix, node)
|
||||||
%>
|
%>
|
||||||
<ul>
|
<ul>
|
||||||
<%- for j, v in pairs(index) do
|
<%- for j, v in pairs(index) do
|
||||||
if #v.name > 0 then
|
if not v.hidden and #v.name > 0 then
|
||||||
local nnode = node.nodes[v.name]
|
local nnode = node.nodes[v.name]
|
||||||
local href = controller .. prefix .. v.name
|
local href = controller .. prefix .. v.name
|
||||||
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
||||||
|
@ -130,7 +130,7 @@ if cattree and cattree.nodes then
|
||||||
|
|
||||||
for i, k in ipairs(index) do
|
for i, k in ipairs(index) do
|
||||||
node = cattree.nodes[k.name]
|
node = cattree.nodes[k.name]
|
||||||
if node.title and node.target then
|
if not node.hidden and node.title and node.target then
|
||||||
local href = controller.."/"..category.."/"..k.name
|
local href = controller.."/"..category.."/"..k.name
|
||||||
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
|
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
|
||||||
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
|
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
|
||||||
|
@ -144,7 +144,7 @@ end
|
||||||
<div class="modemenu">
|
<div class="modemenu">
|
||||||
<ul><%
|
<ul><%
|
||||||
for k,node in pairs(tree.nodes) do
|
for k,node in pairs(tree.nodes) do
|
||||||
if node.title then %>
|
if node.title and not node.hidden then %>
|
||||||
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
|
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
|
||||||
<% end
|
<% end
|
||||||
end%>
|
end%>
|
||||||
|
|
|
@ -93,7 +93,7 @@ end
|
||||||
<div id="mainmenu" class="mainmenu">
|
<div id="mainmenu" class="mainmenu">
|
||||||
<%-
|
<%-
|
||||||
local function submenu(prefix, node)
|
local function submenu(prefix, node)
|
||||||
if not node.nodes then
|
if node.hidden or not node.nodes then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
local index = {}
|
local index = {}
|
||||||
|
@ -111,7 +111,7 @@ local function submenu(prefix, node)
|
||||||
%>
|
%>
|
||||||
<ul>
|
<ul>
|
||||||
<%- for j, v in pairs(index) do
|
<%- for j, v in pairs(index) do
|
||||||
if #v.name > 0 then
|
if not v.hidden and #v.name > 0 then
|
||||||
local nnode = node.nodes[v.name]
|
local nnode = node.nodes[v.name]
|
||||||
local href = controller .. prefix .. v.name
|
local href = controller .. prefix .. v.name
|
||||||
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
||||||
|
@ -137,7 +137,7 @@ if cattree and cattree.nodes then
|
||||||
|
|
||||||
for i, k in ipairs(index) do
|
for i, k in ipairs(index) do
|
||||||
node = cattree.nodes[k.name]
|
node = cattree.nodes[k.name]
|
||||||
if node.title and node.target then
|
if not node.hidden and node.title and node.target then
|
||||||
local href = controller.."/"..category.."/"..k.name
|
local href = controller.."/"..category.."/"..k.name
|
||||||
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
|
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
|
||||||
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
|
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
|
||||||
|
@ -151,7 +151,7 @@ end
|
||||||
<div class="modemenu">
|
<div class="modemenu">
|
||||||
<ul><%
|
<ul><%
|
||||||
for k,node in pairs(tree.nodes) do
|
for k,node in pairs(tree.nodes) do
|
||||||
if node.title then %>
|
if node.title and not node.hidden then %>
|
||||||
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
|
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
|
||||||
<% end
|
<% end
|
||||||
end%>
|
end%>
|
||||||
|
|
|
@ -94,7 +94,7 @@ end
|
||||||
<div id="mainmenu" class="mainmenu">
|
<div id="mainmenu" class="mainmenu">
|
||||||
<%-
|
<%-
|
||||||
local function submenu(prefix, node)
|
local function submenu(prefix, node)
|
||||||
if not node.nodes then
|
if not node.nodes and not node.hidden then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
local index = {}
|
local index = {}
|
||||||
|
@ -138,7 +138,7 @@ if cattree and cattree.nodes then
|
||||||
|
|
||||||
for i, k in ipairs(index) do
|
for i, k in ipairs(index) do
|
||||||
node = cattree.nodes[k.name]
|
node = cattree.nodes[k.name]
|
||||||
if node.title and node.target then
|
if node.title and node.target and not node.hidden then
|
||||||
local href = controller.."/"..category.."/"..k.name
|
local href = controller.."/"..category.."/"..k.name
|
||||||
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
|
href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
|
||||||
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
|
<div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
|
||||||
|
@ -152,7 +152,7 @@ end
|
||||||
<div class="modemenu">
|
<div class="modemenu">
|
||||||
<ul><%
|
<ul><%
|
||||||
for k,node in pairs(tree.nodes) do
|
for k,node in pairs(tree.nodes) do
|
||||||
if node.title then %>
|
if node.title and not node.hidden then %>
|
||||||
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
|
<li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
|
||||||
<% end
|
<% end
|
||||||
end%>
|
end%>
|
||||||
|
|
Loading…
Reference in a new issue