2016-02-03 22:22:18 +00:00
|
|
|
<?php define('__ROOT__', dirname(dirname(__FILE__)) );
|
|
|
|
require_once __ROOT__.'/manager/autoloader.php';
|
2016-02-13 17:47:20 +00:00
|
|
|
use \manager\ModuleRequest;
|
|
|
|
use \manager\ManagerError;
|
2016-08-06 09:32:50 +00:00
|
|
|
use \manager\ViewManager;
|
2016-02-14 12:55:06 +00:00
|
|
|
use \manager\Repo;
|
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-07-08 15:04:41 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/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-07-08 15:04:41 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/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-07-08 15:04:41 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/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-07-08 15:04:41 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/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-07-08 15:04:41 +00:00
|
|
|
<span class='svg'><?php echo file_get_contents( __ROOT__.'/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'>";
|
|
|
|
|
2016-08-06 09:32:50 +00:00
|
|
|
$userlist = new ViewManager('user.view', []);
|
2016-07-11 16:14:18 +00:00
|
|
|
$userlist->view();
|
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>";
|
2016-02-14 19:37:41 +00:00
|
|
|
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 "<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>";
|
2016-02-17 10:24:26 +00:00
|
|
|
echo "<button id='remove_search_submit' class='search'>Trouver</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>";
|
2016-02-15 11:27:01 +00:00
|
|
|
echo "<input id='remove_username' type='text' placeholder='Username'><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>";
|
2016-02-17 10:24:26 +00:00
|
|
|
echo "<button id='edit_search_submit' class='search'>Trouver</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>";
|
|
|
|
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>";
|
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
|
|
|
|
2016-08-06 09:32:50 +00:00
|
|
|
$grouplist = new ViewManager('user.groups', []);
|
2016-07-18 14:46:06 +00:00
|
|
|
$grouplist->view();
|
2016-02-18 14:49:06 +00:00
|
|
|
|
2016-07-02 16:35:34 +00:00
|
|
|
echo '</section>';
|