small-package/luci-app-amlogic/luasrc/model/cbi/amlogic/amlogic_poweroff.lua

15 lines
365 B
Lua
Raw Normal View History

2022-04-28 23:45:17 +08:00
local fs = require "luci.fs2"
2022-03-25 12:20:39 +08:00
local http = require "luci.http"
local DISP = require "luci.dispatcher"
local b
--SimpleForm for PowerOff
b = SimpleForm("poweroff", nil)
b.title = translate("PowerOff")
b.description = translate("Shut down your router device.")
b.reset = false
b.submit = false
b:section(SimpleSection).template = "amlogic/other_poweroff"
return b