1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 05:02:21 +00:00
plateforme-corres2math/server_files/controllers/admins.php
2019-10-23 12:17:17 +02:00

8 lines
162 B
PHP

<?php
if ($_SESSION["role"] != Role::ADMIN)
require_once "server_files/403.php";
$admins = User::getAdmins();
require_once "server_files/views/admins.php";