mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 16:07:09 +00:00
8 lines
217 B
PHP
8 lines
217 B
PHP
<?php
|
|
|
|
if ($_SESSION["role"] != Role::ADMIN && $_SESSION["role"] != Role::ORGANIZER)
|
|
require_once "server_files/403.php";
|
|
|
|
$organizers = User::getOrganizers();
|
|
|
|
require_once "server_files/views/organisateurs.php"; |