mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-05-01 12:00:02 +08:00
10 lines
234 B
Lua
10 lines
234 B
Lua
module("luci.controller.advanced",package.seeall)
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/advanced")then
|
|
return
|
|
end
|
|
local e
|
|
e=entry({"admin","system","advanced"},cbi("advanced"),_("高级设置"),60)
|
|
e.dependent=true
|
|
end
|