luci-app-unbound: add statistics and manual edit tabs
[project/luci.git] / applications / luci-app-unbound / luasrc / model / cbi / unbound / extended.lua
1 -- Copyright 2016 Eric Luehrsen <ericluehrsen@hotmail.com>
2 -- Licensed to the public under the Apache License 2.0.
3
4 local filename = "/etc/unbound/unbound_ext.conf"
5 local m4, s4, frm
6
7 m4 = SimpleForm("editing", nil)
8 m4.submit = translate("Save")
9 m4.reset = false
10
11 s4 = m4:section(SimpleSection, "Unbound Extended Conf",
12   translatef("This allows you to edit %s which is copied to"
13   .. " /var/ and 'include:' last for 'forward:' and other clauses", filename))
14
15 frm = s4:option(TextValue, "data")
16 frm.datatype = "string"
17 frm.rows = 20
18
19
20 function frm.cfgvalue()
21   return nixio.fs.readfile(filename) or ""
22 end
23
24
25 function frm.write(self, section, data)
26   return nixio.fs.writefile(filename, data)
27 end
28
29
30 return m4
31