luci/modules/admin-core/luasrc/controller/admin/wifi.lua
Steven Barth b454395a8d * Performance optimizations
* libs/core: Added bytecode stripping function to luci.util
* libs/core: Added smart indexcache that automatically updates cached index-files on change
* libs/web: Enabled template caching support
* Core Translation part 4
2008-06-01 12:12:18 +00:00

21 lines
No EOL
584 B
Lua

module("luci.controller.admin.wifi", package.seeall)
function index()
luci.i18n.loadc("admin-core")
local i18n = luci.i18n.translate
local page = node("admin", "wifi")
page.target = template("admin_wifi/index")
page.title = i18n("wifi", "Drahtlos")
page.order = 60
local page = node("admin", "wifi", "devices")
page.target = cbi("admin_wifi/devices")
page.title = i18n("devices", "Geräte")
page.order = 10
local page = node("admin", "wifi", "networks")
page.target = cbi("admin_wifi/networks")
page.title = i18n("networks", "Netze")
page.order = 20
end