* luci/applications: add hd-idle application, thanks Yanira
[project/luci.git] / applications / luci-hd_idle / luasrc / model / cbi / hd_idle.lua
1 --[[
2
3 LuCI hd-idle
4 (c) 2008 Yanira <forum-2008@email.de>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 ]]--
15
16 m = Map("hd-idle", translate("hd_idle"), translate("hd_idle_desc"))
17
18 s = m:section(TypedSection, "hd-idle", translate("settings"))
19 s.addremove = true
20 s.anonymous = true
21
22 s:option(Flag, "enabled", translate("enabled", "Enable"))
23
24 s:option(Value, "disk", translate("disk")).rmempty = true
25
26 s:option(Value, "idle_time_interval", translate("idle_time_interval")).default = 10
27 s.rmempty = true
28 unit = s:option(ListValue, "idle_time_unit", translate("idle_time_unit"))
29 unit.default = "minutes"
30 unit:value("minutes", "min")
31 unit:value("hours", "h")
32 unit.rmempty = true
33
34 s:option(Flag, "enable_debug", translate("enable_debug"))
35
36 return m