op-packages/luci-app-switch-lan-play/luasrc/controller/switchlanplay.lua
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

17 lines
446 B
Lua

-- Copyright 2008 Steven Barth <steven@midlink.org>
-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.switchlanplay", package.seeall)
function index()
if not nixio.fs.access("/etc/config/switchlanplay") then
return
end
local page
page = entry({"admin", "services", "switchlanplay"}, cbi("switchlanplay"), _("Switch-Lan-Play"))
page.dependent = true
end