mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 03:01:54 +08:00
14 lines
382 B
Lua
14 lines
382 B
Lua
-- Copyright (C) 2018 XiaoShan mivm.cn
|
|
|
|
module("luci.controller.k3screenctrl", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/k3screenctrl") then
|
|
return
|
|
end
|
|
local page
|
|
page = entry({"admin","system","k3screenctrl"}, cbi("k3screenctrl"), _("Screen"), 60)
|
|
page.dependent = true
|
|
page.acl_depends = { "luci-app-k3screenctrl" }
|
|
end
|