76ea74aca52756542342531b1c00ab0ade459e4e
[project/luci.git] / libs / web / luasrc / view / cbi / network_ifacelist.htm
1 <%+cbi/valueheader%>
2
3 <%-
4         local utl = require "luci.util"
5         local net = require "luci.model.network".init()
6         local cbeid = luci.cbi.FEXIST_PREFIX .. self.config .. "." .. section .. "." .. self.option
7
8         local iface
9         local ifaces = net:get_interfaces()
10         local value
11
12         if self.map:formvalue(cbeid) == "1" then
13                 value = self:formvalue(section) or self.default or ""
14         else
15                 value = self:cfgvalue(section) or self.default
16         end
17
18         local checked = { }
19
20         if value then
21                 for value in utl.imatch(value) do
22                         checked[value] = true
23                 end
24         else
25                 local n = self.network and net:get_network(self.network)
26                 if n then
27                         local i
28                         for _, i in ipairs(n:is_bridge() and n:get_interfaces() or { n:get_interface() }) do
29                                 checked[i:name()] = true
30                         end
31                 end
32         end
33 -%>
34
35 <input type="hidden" name="<%=cbeid%>" value="1" />
36 <ul style="margin:0; list-style-type:none">
37         <% for _, iface in ipairs(ifaces) do
38              local link = iface:adminlink()
39          if (not self.nobridges  or not iface:is_bridge()) and
40                     (not self.noinactive or iface:is_up()) and
41                     iface:name() ~= self.exclude
42                  then %>
43         <li>
44                 <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
45                         attr("type", self.widget or "radio") ..
46                         attr("id", cbid .. "." .. iface:name()) ..
47                         attr("name", cbid) .. attr("value", iface:name()) ..
48                         ifattr(checked[iface:name()], "checked", "checked")
49                 %> /> &#160;
50                 <label<%=attr("for", cbid .. "." .. iface:name())%>>
51                         <% if link then -%><a href="<%=link%>"><% end -%>
52                         <img title="<%=iface:get_type_i18n()%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
53                         <% if link then -%></a><% end -%>
54                         <%=pcdata(iface:get_i18n())%><% local n = iface:get_network(); if n then %> (<a href="<%=n:adminlink()%>"><%=n:name()%></a>)<% end %>
55                 </label>
56         </li>
57         <% end end %>
58         <% if not self.nocreate then %>
59         <li>
60                 <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
61                         attr("type", self.widget or "radio") ..
62                         attr("id", cbid .. "_custom") ..
63                         attr("name", cbid) ..
64                         attr("value", " ")
65                 %> /> &#160;
66                 <label<%=attr("for", cbid .. "_custom")%>>
67                         <img title="<%:Custom Interface%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/ethernet_disabled.png" />
68                         <%:Custom Interface%>:
69                 </label>
70                 <input type="text" style="width:50px" onfocus="document.getElementById('<%=cbid%>_custom').checked=true" onblur="var x=document.getElementById('<%=cbid%>_custom'); x.value=this.value; x.checked=true" />
71         </li>
72         <% end %>
73 </ul>
74
75 <%+cbi/valuefooter%>