2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Yanira <forum-2008@email.de>
|
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-09-24 12:46:07 +00:00
|
|
|
|
|
|
|
module("luci.controller.ushare", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2011-08-12 13:16:27 +00:00
|
|
|
if not nixio.fs.access("/etc/config/ushare") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local page
|
|
|
|
|
|
|
|
page = entry({"admin", "services", "ushare"}, cbi("ushare"), _("uShare"), 60)
|
|
|
|
page.dependent = true
|
2008-09-24 12:46:07 +00:00
|
|
|
end
|