2017-09-19 14:38:16 +00:00
|
|
|
<?php define('__ROOT__', dirname(dirname(dirname(__FILE__))) );
|
|
|
|
require_once __ROOT__.'/vendor/autoload.php';
|
2017-01-30 17:39:21 +00:00
|
|
|
use \api\core\Request;
|
2016-10-18 14:03:03 +00:00
|
|
|
use \database\core\Repo;
|
2017-11-06 14:15:24 +00:00
|
|
|
use \generic\core\View;
|
2016-02-03 22:22:18 +00:00
|
|
|
?>
|
|
|
|
|
2016-02-02 13:03:22 +00:00
|
|
|
<!-- [1] Gestion du sous-menu de gauche -->
|
|
|
|
|
2016-02-02 22:29:30 +00:00
|
|
|
<nav class='sub-menu-side'>
|
2016-02-05 09:26:10 +00:00
|
|
|
<span data-sublink='view'>
|
2016-10-18 14:03:03 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/view.svg' ); ?></span>
|
2016-02-03 07:45:42 +00:00
|
|
|
<span>Tout afficher</span>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span data-sublink='create' >
|
2016-10-18 14:03:03 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/create.svg' ); ?></span>
|
2016-02-03 07:45:42 +00:00
|
|
|
<span>Creation</span>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span data-sublink='remove' >
|
2016-10-18 14:03:03 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/remove.svg' ); ?></span>
|
2016-02-03 07:45:42 +00:00
|
|
|
<span>Suppression</span>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span data-sublink='edit' >
|
2016-10-18 14:03:03 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/edit.svg' ); ?></span>
|
2016-02-03 07:45:42 +00:00
|
|
|
<span>Modification</span>
|
|
|
|
</span>
|
|
|
|
|
2016-07-18 14:46:06 +00:00
|
|
|
<span data-sublink='groups' >
|
2016-10-18 14:03:03 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/filter.svg' ); ?></span>
|
2016-07-18 14:46:06 +00:00
|
|
|
<span>Groupes</span>
|
2016-02-03 07:45:42 +00:00
|
|
|
</span>
|
|
|
|
|
2016-02-02 13:03:22 +00:00
|
|
|
</nav>
|
|
|
|
|
2016-02-03 10:30:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-04 22:45:03 +00:00
|
|
|
<?php
|
2016-07-04 13:45:29 +00:00
|
|
|
$post = [];
|
2016-02-04 22:45:03 +00:00
|
|
|
foreach($_POST as $k=>$v)
|
|
|
|
array_push($post, $k);
|
2016-02-03 10:30:46 +00:00
|
|
|
|
2016-02-04 22:45:03 +00:00
|
|
|
$sublink = $post[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-14 19:37:41 +00:00
|
|
|
/* [1] VIEW -> Liste des utilisateurs
|
|
|
|
=========================================================*/
|
|
|
|
echo "<section data-sublink='view' class='list'>";
|
|
|
|
|
2017-11-06 14:15:24 +00:00
|
|
|
$view = View::load('user.view');
|
|
|
|
echo $view->render();
|
2016-02-14 19:37:41 +00:00
|
|
|
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [2] Creation d'utilisateur
|
|
|
|
=========================================================*/
|
|
|
|
echo "<section data-sublink='create'>";
|
2016-02-05 09:26:10 +00:00
|
|
|
|
2016-02-15 09:22:47 +00:00
|
|
|
echo "<form class='valid'>";
|
2016-02-15 11:27:01 +00:00
|
|
|
echo "<input id='create_code' type='text' placeholder='CO-DE-RF-ID'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg create_code'></span><br>";
|
2016-02-14 19:37:41 +00:00
|
|
|
echo "<input id='create_username' type='text' placeholder='Username'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg create_username'></span><br>";
|
2016-02-14 19:37:41 +00:00
|
|
|
echo "<input id='create_firstname' type='text' placeholder='Firstname'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg create_firstname'></span><br>";
|
2016-02-14 19:37:41 +00:00
|
|
|
echo "<input id='create_lastname' type='text' placeholder='Lastname'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg create_lastname'></span><br>";
|
2016-02-14 19:37:41 +00:00
|
|
|
echo "<input id='create_mail' type='text' placeholder='Mail'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg create_mail'></span><br>";
|
2016-02-14 19:37:41 +00:00
|
|
|
echo "<button id='create_submit'>Créer</button>";
|
|
|
|
echo "</form>";
|
2016-02-04 22:45:03 +00:00
|
|
|
|
2016-02-14 21:50:07 +00:00
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [3] Suppression d'utilisateur
|
|
|
|
=========================================================*/
|
|
|
|
echo "<section data-sublink='remove'>";
|
|
|
|
|
2016-02-15 11:27:01 +00:00
|
|
|
echo "<form class='invalid'>";
|
2016-02-17 11:09:23 +00:00
|
|
|
// Recherche d'utilisateur
|
2016-02-17 10:24:26 +00:00
|
|
|
echo "<input id='remove_search_keyword' type='text' class='search' placeholder='Recherche...'><br>";
|
2016-02-17 11:09:23 +00:00
|
|
|
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>";
|
2017-09-18 16:32:39 +00:00
|
|
|
echo "<button id='remove_search_submit' class='search'>Trouver/Suivant</button><br>";
|
2016-02-17 11:09:23 +00:00
|
|
|
|
2016-07-02 16:35:34 +00:00
|
|
|
|
2016-02-17 10:24:26 +00:00
|
|
|
echo "<br><br><hr class='OR' data-label='PUIS' /><br><br>";
|
2016-07-02 16:35:34 +00:00
|
|
|
|
2016-02-17 11:09:23 +00:00
|
|
|
// Suppression d'utilisateur
|
2016-02-14 21:50:07 +00:00
|
|
|
echo "<input id='remove_code' type='text' placeholder='Code'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg remove_code'></span><br>";
|
2016-02-15 11:27:01 +00:00
|
|
|
echo "<input id='remove_username' type='text' placeholder='Username'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg remove_username'></span><br>";
|
2016-02-16 21:59:01 +00:00
|
|
|
echo "<button id='remove_submit' disabled>Supprimer</button>";
|
2016-02-14 21:50:07 +00:00
|
|
|
echo "</form>";
|
|
|
|
|
2016-02-15 11:27:01 +00:00
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [4] Modification d'utilisateur
|
|
|
|
=========================================================*/
|
|
|
|
echo "<section data-sublink='edit'>";
|
|
|
|
|
|
|
|
echo "<form class='neutral'>";
|
2016-02-16 13:25:06 +00:00
|
|
|
echo "<input id='edit_search_keyword' type='text' class='search' placeholder='Recherche...'><br>";
|
2016-02-17 11:09:23 +00:00
|
|
|
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>";
|
2017-09-18 16:32:39 +00:00
|
|
|
echo "<button id='edit_search_submit' class='search'>Trouver/Suivant</button><br>";
|
2016-07-02 16:35:34 +00:00
|
|
|
|
2016-02-17 10:24:26 +00:00
|
|
|
echo "<br><br><hr class='OR' data-label='PUIS' /><br><br>";
|
2016-02-16 13:25:06 +00:00
|
|
|
|
2016-02-15 14:43:47 +00:00
|
|
|
echo "<input id='edit_code' type='text' placeholder='CO-DE-RF-ID'><br>";
|
2017-09-03 17:12:38 +00:00
|
|
|
echo "<span class='error-msg edit_code'></span><br>";
|
2016-02-15 14:43:47 +00:00
|
|
|
echo "<input id='edit_username' type='text' placeholder='Username'><br>";
|
2017-09-18 16:32:39 +00:00
|
|
|
echo "<span class='error-msg edit_username'></span><br>";
|
2016-02-15 14:43:47 +00:00
|
|
|
echo "<input id='edit_firstname' type='text' placeholder='Firstname'><br>";
|
2017-09-18 16:32:39 +00:00
|
|
|
echo "<span class='error-msg edit_firstname'></span><br>";
|
2016-02-15 14:43:47 +00:00
|
|
|
echo "<input id='edit_lastname' type='text' placeholder='Lastname'><br>";
|
2017-09-18 16:32:39 +00:00
|
|
|
echo "<span class='error-msg edit_lastname'></span><br>";
|
2016-02-15 14:43:47 +00:00
|
|
|
echo "<input id='edit_mail' type='text' placeholder='Mail'><br>";
|
2017-09-18 16:32:39 +00:00
|
|
|
echo "<span class='error-msg edit_mail'></span><br>";
|
2016-02-16 21:59:01 +00:00
|
|
|
echo "<button id='edit_submit' disabled>Modifier</button>";
|
2016-02-15 11:27:01 +00:00
|
|
|
echo "</form>";
|
|
|
|
|
2016-02-18 14:49:06 +00:00
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-07-18 14:46:06 +00:00
|
|
|
/* [4] Gestion des groupes
|
2016-02-18 14:49:06 +00:00
|
|
|
=========================================================*/
|
2016-07-18 14:46:06 +00:00
|
|
|
echo "<section data-sublink='groups' class='list'>";
|
2016-02-18 14:49:06 +00:00
|
|
|
|
2017-11-06 14:15:24 +00:00
|
|
|
$view = View::load('user.group');
|
|
|
|
echo $view->render();
|
2016-02-18 14:49:06 +00:00
|
|
|
|
2016-07-02 16:35:34 +00:00
|
|
|
echo '</section>';
|