Modo controleur (my bad)

alexis-rendu
Leo TUAILLON 1 year ago
parent ce5fb022b9
commit a2f805cba2

@ -0,0 +1,21 @@
<?php
namespace App\controleur;
class ModerateurControleur extends MembreControleur
{
public function __construct()
{
global $twig;
if (!isset($_REQUEST["action"])) {
$action = NULL;
} else {
$action = \App\config\Validation::nettoyerString($_REQUEST["action"]);
}
switch ($action) {
default:
parent::__construct();
}
}
}

@ -25,7 +25,7 @@
<p>{{ profil.prenom }} {{ profil.nom }}</p> <p>{{ profil.prenom }} {{ profil.nom }}</p>
<p class="job-title">Développeur web chez CGI FRANCE</p> <p class="job-title">Développeur web chez CGI FRANCE</p>
<a href="{{ 'voir_profil.php?id=' ~ profil.id }}" class="btn btn-primary">Voir le détail du profil</a> <a href="{{ 'voir_profil.php?id=' ~ profil.id }}" class="btn btn-primary">Voir le détail du profil</a>
{% if user.role == 'admin' %} {% if role == 'Admin' %}
<a href="{{ 'bloquer_profil.php?id=' ~ profil.id }}" class="btn btn-danger">Bannir l'utilisateur</a> <a href="{{ 'bloquer_profil.php?id=' ~ profil.id }}" class="btn btn-danger">Bannir l'utilisateur</a>
{% endif %} {% endif %}
</div> </div>

Loading…
Cancel
Save