MMDVMHost-Dashboard/index.php

76 lines
2.8 KiB
PHP
Raw Normal View History

2016-04-30 15:38:12 +02:00
<?php
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
2016-05-10 21:50:33 +02:00
// do not touch this includes!!! Never ever!!!
2016-04-30 15:38:12 +02:00
include "config/config.php";
2016-04-30 19:33:41 +02:00
include "include/tools.php";
2016-04-30 15:38:12 +02:00
include "include/functions.php";
?>
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
2016-06-24 18:59:05 +02:00
<meta name="viewport" content="width=device-width, initial-scale=0.6,maximum-scale=1, user-scalable=yes">
2016-06-23 21:17:09 +02:00
<!--<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">-->
2016-04-30 15:38:12 +02:00
<meta http-equiv="refresh" content="<?php echo REFRESHAFTER?>">
2016-06-23 21:17:09 +02:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script>
2016-04-30 15:38:12 +02:00
<!-- Das neueste kompilierte und minimierte CSS -->
2016-06-15 15:36:08 +02:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
2016-04-30 15:38:12 +02:00
<!-- Optionales Theme -->
2016-06-15 15:36:08 +02:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
2016-04-30 15:38:12 +02:00
<!-- Das neueste kompilierte und minimierte JavaScript -->
2016-06-15 15:36:08 +02:00
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
2016-06-23 21:17:09 +02:00
<link rel="stylesheet" href="http://cdn.datatables.net/1.10.2/css/jquery.dataTables.min.css"></style>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
2016-06-24 18:59:05 +02:00
<link rel="stylesheet" href="http://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css"></style>
<script type="text/javascript" src="http://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
2016-06-23 21:17:09 +02:00
2016-06-24 18:59:05 +02:00
2016-05-09 22:39:47 +02:00
<title><?php echo getCallsign($mmdvmconfigs) ?> - MMDVM-Dashboard by DG9VH</title>
2016-04-30 15:38:12 +02:00
</head>
<body>
<div class="page-header">
<h1><small>MMDVM-Dashboard by DG9VH for <?php
if (getConfigItem("General", "Duplex", $mmdvmconfigs) == "1") {
echo "Repeater";
} else {
echo "Hotspot";
}
?>:</small> <?php echo getCallsign($mmdvmconfigs) ?></h1>
<h4>MMDVMHost by G4KLX Version: <?php echo getMMDVMHostVersion() ?></h4>
2016-04-30 15:38:12 +02:00
</div>
<?php
checkSetup();
2016-05-10 21:50:33 +02:00
// Here you can feel free to disable info-sections by commenting out with // before include
2016-04-30 19:33:41 +02:00
include "include/sysinfo.php";
2016-05-02 10:19:08 +02:00
include "include/repeaterinfo.php";
2016-05-09 22:39:47 +02:00
include "include/modes.php";
2016-04-30 15:38:12 +02:00
include "include/lh.php";
2016-05-11 23:16:05 +02:00
include "include/localtx.php";
2016-06-11 22:38:54 +02:00
if (defined("ENABLEYSFGATEWAY")) {
include "include/ysfgatewayinfo.php";
}
2016-04-30 15:38:12 +02:00
?>
<div class="panel panel-info">
<?php
$datum = date("Y-m-d");
$uhrzeit = date("H:i:s");
echo "Last Update $datum, $uhrzeit";
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$finish = $time;
$total_time = round(($finish - $start), 4);
2016-06-24 21:08:10 +02:00
echo '<!--Page generated in '.$total_time.' seconds.-->';
2016-06-24 18:59:05 +02:00
?> | get your own at: <a href="https://github.com/ayasystems/MMDVMHost-Dashboard">Github</a>
2016-04-30 15:38:12 +02:00
</div>
2016-06-24 18:59:05 +02:00
2016-04-30 15:38:12 +02:00
</body>
</html>