--[[ LuCI - Lua Configuration Interface Copyright 2020 doushang Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 ]]-- local sys = require "luci.sys" local i18n = require "luci.i18n" local a,b,c,d m = Map("shortcutmenu", i18n.translate("Quick Links"), i18n.translatef("Short cut links for quick access to web pages.")) s = m:section(TypedSection, "lists", i18n.translate("Lists")) s.template = "cbi/tblsection" s.anonymous = true s.addremove = true a = s:option(Value, "webname", i18n.translate("Name")) b = s:option(Value,"weburl", i18n.translate("URL(without http:// or https:// )")) c = s:option(Value,"webpath",i18n.translate("Path")) c.default = '/' d = s:option(DummyValue,"operator",i18n.translate("Operator")) d.rawhtml = true function d.cfgvalue(self, s) local e = self.map:get(s, "weburl") or ' ' local f = self.map:get(s, "webpath") or ' ' return "" end return m