module("luci.controller.APPNAME", package.seeall) function index() entry({"admin", "apps"}, firstchild(), _("Apps") , 45).dependent = false if not nixio.fs.access("/etc/config/APPNAME") then return end local page = entry({"admin", "apps", "APPNAME"}, cbi("APPNAME"), _("APPNAME")) page.order = 10 page.dependent = true page.acl_depends = { "luci-app-APPNAME" } entry({"admin","apps","APPNAME","status"},call("act_status")).leaf=true end