gluon-packages/luci/config-mode/files/usr/lib/lua/luci/controller/ffhl/index.lua

15 lines
312 B
Lua
Raw Normal View History

2012-05-22 19:28:02 +02:00
module("luci.controller.ffhl.index", package.seeall)
function index()
local uci = luci.model.uci.cursor()
2012-05-22 19:28:02 +02:00
if uci:get_first("ffhl", "wizard", "enabled") == "1" then
local root = node()
if not root.target then
root.target = alias("wizard", "welcome")
root.index = true
end
end
2012-05-22 19:28:02 +02:00
end