2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-07-15 14:33:29 +00:00
|
|
|
|
|
|
|
module("luci.controller.mini.network", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2011-08-12 13:16:27 +00:00
|
|
|
entry({"mini", "network"}, alias("mini", "network", "index"), _("Network"), 20).index = true
|
|
|
|
entry({"mini", "network", "index"}, cbi("mini/network", {autoapply=true}), _("General"), 1)
|
2016-06-09 08:55:20 +00:00
|
|
|
entry({"mini", "network", "wifi"}, cbi("mini/wifi", {autoapply=true}), _("Wireless"), 10)
|
2011-08-12 13:16:27 +00:00
|
|
|
entry({"mini", "network", "dhcp"}, cbi("mini/dhcp", {autoapply=true}), _("DHCP"), 20)
|
2009-11-01 14:24:04 +00:00
|
|
|
end
|