diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-13 20:03:40 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-13 20:03:40 +0000 |
commit | 1db135a32f73ce9445f8f498123dbb632f4b5bca (patch) | |
tree | 282ecd13634b50782e07ce6370cb09374803e227 /applications/luci-radvd/luasrc/model/cbi/radvd/route.lua | |
parent | bd8ac05d56d89f0db6a1e06fefa9a8ce8776547d (diff) |
applications/luci-radvd: expose ignore option, assign column widths
Diffstat (limited to 'applications/luci-radvd/luasrc/model/cbi/radvd/route.lua')
-rw-r--r-- | applications/luci-radvd/luasrc/model/cbi/radvd/route.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/applications/luci-radvd/luasrc/model/cbi/radvd/route.lua b/applications/luci-radvd/luasrc/model/cbi/radvd/route.lua index 31b6900e59..6e84d0fb25 100644 --- a/applications/luci-radvd/luasrc/model/cbi/radvd/route.lua +++ b/applications/luci-radvd/luasrc/model/cbi/radvd/route.lua @@ -35,6 +35,19 @@ s.addremove = false -- General -- +o = s:option(Flag, "ignore", translate("Enable")) +o.rmempty = false + +function o.cfgvalue(...) + local v = Flag.cfgvalue(...) + return v == "1" and "0" or "1" +end + +function o.write(self, section, value) + Flag.write(self, section, value == "1" and "0" or "1") +end + + o = s:option(Value, "interface", translate("Interface"), translate("Specifies the logical interface name this section belongs to")) |