libs/cbi: change widgets using model.network to new api
[project/luci.git] / libs / cbi / luasrc / view / cbi / network_ifacelist.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2009 Jo-Philipp Wich <xm@subsignal.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 $Id$
12
13 -%>
14 <%+cbi/valueheader%>
15
16 <%-
17 local utl = require "luci.util"
18 local net = require "luci.model.network"
19
20 local iface
21 local ifaces = net:get_interfaces()
22 local value = (self:formvalue(section) or self.default or "")
23 local checked = { }
24
25 if value and #value > 0 then
26 if type(value) == "table" then value = table.concat(value, " ") end
27 for value in value:gmatch("%S+") do
28 checked[value] = true
29 end
30 else
31 local n = self.network and net:get_network(self.network)
32 if n then
33 local i
34 for _, i in ipairs(n:get_interfaces()) do
35 checked[i:name()] = true
36 end
37 end
38 end
39 -%>
40
41 <ul style="margin:0; list-style-type:none">
42 <% for _, iface in utl.spairs(ifaces, function(a,b) return (ifaces[a]:type() < ifaces[b]:type()) end) do
43 if not self.nobridges or not iface:is_bridge() then %>
44 <li>
45 <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. iface:name()) .. attr("name", cbid) .. attr("value", iface:name()) .. ifattr(checked[iface:name()], "checked", "checked")%> /> &nbsp;
46 <label<%=attr("for", cbid .. "." .. iface:name())%>>
47 <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" />
48 <%=iface:get_i18n()%><% local n = iface:get_network(); if n then %> (<%=n:name()%>)<% end %>
49 </label>
50 </li>
51 <% end end %>
52 </ul>
53
54 <%+cbi/valuefooter%>