You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TS-Website/viewer.php

45 lines
1.4 KiB

9 years ago
<?php
require_once __DIR__ . "/include/header.php";
require_once __DIR__ . "/include/tsutils.php";
require_once __DIR__ . "/include/cacheutils.class.php";
9 years ago
$cacheutils = new CacheUtils('tsviewer');
9 years ago
if($cacheutils->isExpired()) {
$cacheutils->setValue([getViewer(), date('d-m-Y H:i:s')], 300);
9 years ago
}
$tsviewer = $cacheutils->getValue();
9 years ago
// print_r ($tsviewer);
function getViewer() {
9 years ago
global $lang;
9 years ago
try {
$tsAdmin = getTeamspeakConnection("#no_query_clients");
$base = "lib/ts3phpframework/images";
return $tsAdmin->getViewer(new TeamSpeak3_Viewer_Html("$base/viewer/", "$base/flags/", "data:image"));
} catch (TeamSpeak3_Exception $e) {
9 years ago
return '<div class="alert alert-danger"><p class="text-center">' . translate($lang["general"]["scripterror"], [$e->getCode(), $e->getMessage()]) . '</p></div>';
9 years ago
}
}
?>
<div class="panel panel-default">
<div class="panel-heading">
9 years ago
<h3 class="panel-title"><i class="fa fa-eye" aria-hidden="true"></i> <?php tl($lang["viewer"]["title"]); ?></h3>
9 years ago
</div>
<div class="panel-body">
<?php echo $tsviewer[0]; ?>
</div>
<div class="panel-footer">
<?php tl($lang["viewer"]["lastupdate"], [$tsviewer[1]]); ?><!-- <span style="float: right">Podgląd odświeża się co 30 sekund</span> -->
9 years ago
</div>
</div>
<?php
require_once __DIR__ . "/include/footer.php";
?>