From 21bf16ce04adaaa28811f96f4b29d6dc74c36ae6 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Tue, 16 Feb 2016 22:28:46 +0200 Subject: luci-app-adblock: User interface for the 'adblock' package Simple user interface for the 'adblock' package from packages feed. Adds 'Adblock' item to the Services menu in LuCI. Allows enabling/disabling the service and selecting blocklists. Configuration of the blocklist URLs and selection of Shalla categories needs to be done manually to the config file, if needed. Signed-off-by: Hannu Nyman --- applications/luci-app-adblock/luasrc/controller/adblock.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 applications/luci-app-adblock/luasrc/controller/adblock.lua (limited to 'applications/luci-app-adblock/luasrc/controller/adblock.lua') diff --git a/applications/luci-app-adblock/luasrc/controller/adblock.lua b/applications/luci-app-adblock/luasrc/controller/adblock.lua new file mode 100644 index 0000000000..d8b471814f --- /dev/null +++ b/applications/luci-app-adblock/luasrc/controller/adblock.lua @@ -0,0 +1,12 @@ +-- Copyright 2016 Openwrt.org +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.adblock", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/adblock") then + return + end + + entry({"admin", "services", "adblock"}, cbi("adblock"), _("Adblock"), 40) +end -- cgit v1.2.3