header.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><?php echo WEB_site_title; ?></title>
  5. <link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
  6. <link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
  7. <link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
  8. <link rel="manifest" href="/site.webmanifest">
  9. <link rel="mask-icon" href="/img/safari-pinned-tab.svg" color="#5bbad5">
  10. <meta name="msapplication-TileColor" content="#da532c">
  11. <meta name="theme-color" content="#ffffff">
  12. <link rel="stylesheet" type="text/css" href="/<?php echo HTML_STYLE.'.css'; ?>">
  13. <script src="/js/jq/jquery.min.js"></script>
  14. <link href="/js/select2/css/select2.min.css" rel="stylesheet"/>
  15. <script src="/js/select2/js/select2.min.js"></script>
  16. <link rel="stylesheet" href="/js/jstree/themes/default/style.min.css" />
  17. <script src="/js/jstree/jstree.min.js"></script>
  18. <meta http-equiv="content-type" content="application/xhtml+xml" />
  19. <meta charset="UTF-8" />
  20. <script language="javascript">
  21. function checkAll(check) {
  22. var boxes = document.def.elements.length;
  23. if(check) {
  24. for(i=0; i<boxes; i++) {
  25. document.def.elements[i].checked = true;
  26. }
  27. } else {
  28. for(i=0; i<boxes; i++) {
  29. document.def.elements[i].checked = false;
  30. }
  31. }
  32. }
  33. $(document).ready(function() {
  34. $('.js-select-single').select2();
  35. });
  36. </script>
  37. </head>
  38. <body>
  39. <div id="title"><?php print get_const('org_name')?></div>
  40. <div id="navi">
  41. <a href="/admin/reports/index-full.php"><?php print WEB_title_reports; ?></a> |
  42. <a href="/admin/groups/"><?php print WEB_title_groups; ?></a> |
  43. <a href="/admin/users/"><?php print WEB_title_users; ?></a> |
  44. <a href="/admin/iplist/"><?php print WEB_title_users_ips; ?></a> |
  45. <a href="/admin/filters/"><?php print WEB_title_filters; ?></a> |
  46. <a href="/admin/queues/"><?php print WEB_title_shapers; ?></a> |
  47. <a href="/admin/devices/"><?php print WEB_title_devices; ?></a> |
  48. <a href="/admin/customers/control.php"><?php print WEB_title_control; ?></a> |
  49. <a href="/admin/logs/"><?php print WEB_title_logs; ?></a> |
  50. <a href="/logout.php"><?php print WEB_title_exit; ?></a>
  51. </div>