luci-app-hd-idle: removed dashes in menu items and text labels
[project/luci.git] / applications / luci-app-hd-idle / luasrc / controller / hd_idle.lua
1 -- Copyright 2008 Yanira <forum-2008@email.de>
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.hd_idle", package.seeall)
5
6 function index()
7         if not nixio.fs.access("/etc/config/hd-idle") then
8                 return
9         end
10
11         local page
12
13         page = entry({"admin", "services", "hd_idle"}, cbi("hd_idle"), _("HDD Idle"), 60)
14         page.dependent = true
15 end