luci_diag.lua 446 B

12345678910111213141516
  1. -- Copyright 2009 Daniel Dickinson
  2. -- Licensed to the public under the Apache License 2.0.
  3. module("luci.controller.luci_diag", package.seeall)
  4. function index()
  5. local e
  6. e = entry({"admin", "network", "diag_config"}, template("diag/network_config_index") , _("Configure Diagnostics"), 120)
  7. e.index = true
  8. e.dependent = true
  9. e = entry({"mini", "diag"}, template("diag/index"), _("Diagnostics"), 120)
  10. e.index = true
  11. e.dependent = true
  12. end