177 lines
4.6 KiB
PHP
Executable File
177 lines
4.6 KiB
PHP
Executable File
<?php define('__ROOT__', dirname(dirname(__FILE__)) );
|
|
require_once __ROOT__.'/manager/autoloader.php';
|
|
use \manager\ModuleRequest;
|
|
use \manager\ManagerError;
|
|
use \manager\View;
|
|
use \manager\Repo;
|
|
?>
|
|
|
|
<!-- [1] Gestion du sous-menu de gauche -->
|
|
|
|
<nav class='sub-menu-side'>
|
|
<span data-sublink='view'>
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/src/static/sub-menu-side/view.svg' ); ?></span>
|
|
<span>Tout afficher</span>
|
|
</span>
|
|
|
|
<span data-sublink='create' >
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/src/static/sub-menu-side/create.svg' ); ?></span>
|
|
<span>Creation</span>
|
|
</span>
|
|
|
|
<span data-sublink='remove' >
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/src/static/sub-menu-side/remove.svg' ); ?></span>
|
|
<span>Suppression</span>
|
|
</span>
|
|
|
|
<span data-sublink='edit' >
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/src/static/sub-menu-side/edit.svg' ); ?></span>
|
|
<span>Modification</span>
|
|
</span>
|
|
|
|
<span data-sublink='filter' >
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/src/static/sub-menu-side/filter.svg' ); ?></span>
|
|
<span>Filtrer</span>
|
|
</span>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$post = [];
|
|
foreach($_POST as $k=>$v)
|
|
array_push($post, $k);
|
|
|
|
$sublink = $post[0];
|
|
|
|
|
|
|
|
/* [1] VIEW -> Liste des utilisateurs
|
|
=========================================================*/
|
|
echo "<section data-sublink='view' class='list'>";
|
|
|
|
$userlist = new View('user.view');
|
|
$userlist->view();
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [2] Creation d'utilisateur
|
|
=========================================================*/
|
|
echo "<section data-sublink='create'>";
|
|
|
|
echo "<form class='valid'>";
|
|
echo "<input id='create_code' type='text' placeholder='CO-DE-RF-ID'><br>";
|
|
echo "<input id='create_username' type='text' placeholder='Username'><br>";
|
|
echo "<input id='create_firstname' type='text' placeholder='Firstname'><br>";
|
|
echo "<input id='create_lastname' type='text' placeholder='Lastname'><br>";
|
|
echo "<input id='create_mail' type='text' placeholder='Mail'><br>";
|
|
echo "<input id='create_password' type='password' placeholder='Password'><br>";
|
|
echo "<button id='create_submit'>Créer</button>";
|
|
echo "</form>";
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [3] Suppression d'utilisateur
|
|
=========================================================*/
|
|
echo "<section data-sublink='remove'>";
|
|
|
|
echo "<form class='invalid'>";
|
|
// Recherche d'utilisateur
|
|
echo "<input id='remove_search_keyword' type='text' class='search' placeholder='Recherche...'><br>";
|
|
echo "<input id='remove_search_id' type='hidden' value=''>";
|
|
// Indice du resultat
|
|
echo "<span class='remove_search_view'>utilisateur <span class='remove_search_num'>0</span> sur <span class='remove_search_sum'>0</span></span><br><br>";
|
|
echo "<button id='remove_search_submit' class='search'>Trouver</button><br>";
|
|
|
|
|
|
echo "<br><br><hr class='OR' data-label='PUIS' /><br><br>";
|
|
|
|
// Suppression d'utilisateur
|
|
echo "<input id='remove_code' type='text' placeholder='Code'><br>";
|
|
echo "<input id='remove_username' type='text' placeholder='Username'><br>";
|
|
echo "<button id='remove_submit' disabled>Supprimer</button>";
|
|
echo "</form>";
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [4] Modification d'utilisateur
|
|
=========================================================*/
|
|
echo "<section data-sublink='edit'>";
|
|
|
|
echo "<form class='neutral'>";
|
|
echo "<input id='edit_search_keyword' type='text' class='search' placeholder='Recherche...'><br>";
|
|
echo "<input id='edit_search_id' type='hidden' value=''>";
|
|
// Indice du resultat
|
|
echo "<span class='edit_search_view'>utilisateur <span class='edit_search_num'>0</span> sur <span class='edit_search_sum'>0</span></span><br><br>";
|
|
echo "<button id='edit_search_submit' class='search'>Trouver</button><br>";
|
|
|
|
echo "<br><br><hr class='OR' data-label='PUIS' /><br><br>";
|
|
|
|
echo "<input id='edit_code' type='text' placeholder='CO-DE-RF-ID'><br>";
|
|
echo "<input id='edit_username' type='text' placeholder='Username'><br>";
|
|
echo "<input id='edit_firstname' type='text' placeholder='Firstname'><br>";
|
|
echo "<input id='edit_lastname' type='text' placeholder='Lastname'><br>";
|
|
echo "<input id='edit_mail' type='text' placeholder='Mail'><br>";
|
|
echo "<input id='edit_password' type='password' placeholder='Password'><br>";
|
|
echo "<button id='edit_submit' disabled>Modifier</button>";
|
|
echo "</form>";
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [4] Gestion de filtrage
|
|
=========================================================*/
|
|
echo "<section data-sublink='filter'>";
|
|
|
|
echo "<form class='neutral'>";
|
|
|
|
echo "</form>";
|
|
|
|
echo '</section>';
|