HEX
Server: Apache
System: Linux v38079.2is.nl 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: democfellows (10015)
PHP: 8.1.34
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/creativefellows.nl/kika.creativefellows.nl/views/view.admin.php
<?php

	require_once "header.php";
	
	
	echo '<div class="cell small-12 medium-6 text-center">';

		echo '<h1>Beheer</h1>';	
		echo '<h3>Spellen</h3>';
		echo '<ul class="no-bullet games-list">';
	
			foreach($data["games"] as $game)
			{
				echo '<li>';
					echo '<a href="'. $router->pathFor('viewgamedetails',["id" => $game["game_id"]]) .'">'. $game["name"] .' ('. $game["count"] .'/'. $game["users"] .' spelers)</a>';
				echo '<li>';
			}
			echo '<li><a href="'. $router->pathFor('addgame') .'" class="add">+ Nieuw spel</a><li>';
		
		echo '</ul>';
		
		echo '<h3>Gebruikers</h3>';
		echo '<ul class="no-bullet games-list">';
			echo '<li><a href="'. $router->pathFor('users') .'" class="">Bekijken</a><li>';
		echo '</ul>';
		
	echo '</div>';


	require_once "footer.php";

?>