Files
op-packages/luci-app-timecontrol/luasrc/controller/timecontrol.lua
T
github-actions[bot] 6348b68a14
Merge-upstream / merge (push) Canceled after 0s
💋 Sync 2026-09-07 03:05:06
2026-09-07 03:05:06 +08:00

20 lines
708 B
Lua

module("luci.controller.timecontrol", package.seeall)
function index()
if not nixio.fs.access("/etc/config/timecontrol") then return end
entry({"admin", "control"}, firstchild(), "Control", 44).dependent = false
local page = entry({"admin", "control", "timecontrol"}, cbi("timecontrol"), _("Internet Time Control"))
page.order = 10
page.dependent = true
page.acl_depends = { "luci-app-timecontrol" }
entry({"admin", "control", "timecontrol", "status"}, call("status")).leaf = true
end
function status()
local e = {}
e.status = luci.sys.call("/etc/init.d/timecontrol status >/dev/null 2>&1") == 0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end