* luci/statistics: complete cbi model translation
[project/luci.git] / applications / luci-statistics / luasrc / model / cbi / luci_statistics / interface.lua
1 --[[
2
3 Luci configuration model for statistics - collectd interface plugin configuration
4 (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 ]]--
15
16 require("luci.sys")
17
18
19 m = Map("luci_statistics")
20
21 -- collectd_interface config section
22 s = m:section( NamedSection, "collectd_interface", "luci_statistics" )
23
24 -- collectd_interface.enable
25 enable = s:option( Flag, "enable" )
26 enable.default = 0
27
28 -- collectd_interface.interfaces (Interface)
29 interfaces = s:option( MultiValue, "Interfaces" )
30 interfaces.widget = "select"
31 interfaces.size   = 5
32 interfaces:depends( "enable", 1 )
33 for k, v in pairs(luci.sys.net.devices()) do
34         interfaces:value(v)
35 end
36
37 -- collectd_interface.ignoreselected (IgnoreSelected)
38 ignoreselected = s:option( Flag, "IgnoreSelected" )
39 ignoreselected.default = 0
40 ignoreselected:depends( "enable", 1 )
41
42 return m