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.
		
		
		
		
		
			
		
			
				
					
					
						
							50 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							50 lines
						
					
					
						
							1.4 KiB
						
					
					
				| <?php
 | |
| require_once __DIR__ . "/include/header.php";
 | |
| require_once __DIR__ . "/include/tsutils.php";
 | |
| require_once __DIR__ . "/lib/phpfastcache/autoload.php";
 | |
| 
 | |
| 
 | |
| use phpFastCache\Util;
 | |
| use phpFastCache\CacheManager;
 | |
| 
 | |
| Util\Languages::setEncoding("UTF-8");
 | |
| $cache = CacheManager::Files();
 | |
| 
 | |
| $tsviewer = $cache->get('tsviewer');
 | |
| 
 | |
| // $cache->clean();
 | |
| 
 | |
| if (is_null($tsviewer)) {
 | |
|     $tsviewer = array(getViewer(), date('d-m-Y H:i:s'));
 | |
|     $cache->set('tsviewer', $tsviewer, 300);
 | |
| }
 | |
| 
 | |
| // print_r ($tsviewer);
 | |
| 
 | |
| function getViewer() {
 | |
|     try {
 | |
|         $tsAdmin = TeamSpeak3::factory(getTeamspeakURI(). "#no_query_clients");
 | |
|         return $tsAdmin->getViewer(new TeamSpeak3_Viewer_Html("lib/ts3phpframework/images/viewer/", "lib/ts3phpframework/images/flags/", "data:image"));
 | |
|     } catch(TeamSpeak3_Exception $e) {
 | |
|         return '<div class="alert alert-danger"><p class="text-center">Wystąpił błąd ' . $e->getCode() . ': ' . $e->getMessage() . '</p></div>';
 | |
|     }
 | |
| }
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <div class="panel panel-default">
 | |
|     <div class="panel-heading">
 | |
|         <h3 class="panel-title"><i class="fa fa-eye" aria-hidden="true"></i> Podgląd serwera</h3>
 | |
|     </div>
 | |
|     <div class="panel-body">
 | |
|         <?php echo $tsviewer[0]; ?>
 | |
|     </div>
 | |
|     <div class="panel-footer">
 | |
|         Stan na <?php echo $tsviewer[1]; ?><!-- <span style="float: right">Podgląd odświerza się co 30 sekund</span> -->
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| <?php
 | |
| require_once __DIR__ . "/include/footer.php";
 | |
| ?>
 |