luci/modules/admin-full/luasrc/controller/admin/network.lua

49 lines
1.3 KiB
Lua
Raw Normal View History

--[[
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]--
module("luci.controller.admin.network", package.seeall)
2008-05-22 14:04:03 +00:00
function index()
2008-06-08 13:03:55 +00:00
require("luci.i18n")
local i18n = luci.i18n.translate
2008-05-22 14:04:03 +00:00
local page = node("admin", "network")
page.target = template("admin_network/index")
2008-06-08 13:03:55 +00:00
page.title = i18n("network", "Netzwerk")
2008-05-22 14:04:03 +00:00
page.order = 50
local page = node("admin", "network", "vlan")
page.target = cbi("admin_network/vlan")
2008-06-08 13:03:55 +00:00
page.title = i18n("a_n_switch", "Switch")
2008-05-22 14:04:03 +00:00
page.order = 10
local page = node("admin", "network", "ifaces")
page.target = cbi("admin_network/ifaces")
2008-06-08 13:03:55 +00:00
page.title = i18n("interfaces", "Schnittstellen")
2008-05-22 14:04:03 +00:00
page.order = 20
local page = node("admin", "network", "dhcp")
page.target = cbi("admin_network/dhcp")
2008-06-08 13:03:55 +00:00
page.title = "DHCP"
2008-05-22 14:04:03 +00:00
page.order = 30
local page = node("admin", "network", "ptp")
page.target = cbi("admin_network/ptp")
page.title = "PPPoE / PPTP"
page.order = 40
local page = node("admin", "network", "routes")
page.target = cbi("admin_network/routes")
2008-06-08 13:03:55 +00:00
page.title = i18n("a_n_routes", "Routen")
2008-05-22 14:04:03 +00:00
page.order = 50
end