148 lines
5.6 KiB
PHP
Executable File
148 lines
5.6 KiB
PHP
Executable File
<?php session_start();
|
|
require('autoloader.php');
|
|
if(!Authentification::checkUser(0)){
|
|
header("Location: http://".$_SERVER['HTTP_HOST']."/index.php");
|
|
die();
|
|
};
|
|
|
|
|
|
function customCompression($input, $compression){
|
|
if( $compression ) return strtr(base64_encode(addslashes(gzcompress(serialize($input),9))), '+/=', '-_,');
|
|
else return unserialize(gzuncompress(stripslashes(base64_decode(strtr($input, '-_,', '+/=')))));
|
|
}
|
|
|
|
/* REPONSE DU MANAGER */
|
|
$managerStatus = (isset($_GET['status'])) ? $_GET['status'] : null;
|
|
$managerTitle = (isset($_GET['title'])) ? $_GET['title'] : 'Oups!';
|
|
$managerMessage = (isset($_GET['message'])) ? $_GET['message'] : 'Erreur interne!';
|
|
|
|
// on récupère la liste des médecins si donnée
|
|
$medecinsSearch = ( isset($_GET['medecins']) ) ? json_decode( customCompression($_GET['medecins'], false) , true) : [];
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Gestion des médecins</title>
|
|
|
|
<meta charset='utf-8'/>
|
|
<meta name='description' value='Site de test'/>
|
|
<meta name='author' value='{xdrm} & SeekDaSky'/>
|
|
|
|
<link rel='stylesheet' href='css/font.css'/>
|
|
<link rel='stylesheet' href='css/animations.css'/>
|
|
<link rel='stylesheet' href='css/global.css'/>
|
|
<link rel='stylesheet' href='css/blue-green.theme.css'/>
|
|
<link rel='stylesheet' href='css/responsive.css'/>
|
|
|
|
<script type='text/javascript' src='js/lib/API.js'></script>
|
|
<script type='text/javascript' src='js/lib/adjust.js'></script>
|
|
<script type='text/javascript' src='js/lib/input-checker.js'></script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- BARRE DE NOTIFICATIONS -->
|
|
<div id='NOTIFBAR' class='<?php echo ($managerStatus!=null) ? 'active '.$managerStatus : $managerStatus; ?>'>
|
|
<div></div>
|
|
<div>
|
|
<h3><?php echo $managerTitle; ?></h3>
|
|
<p><?php echo $managerMessage; ?></p>
|
|
<a href='?medecins=<?php echo customCompression(json_encode($medecinsSearch), true); ?>'><input type='button' value='Fermer'></a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- WRAPPER DE LA PAGE -->
|
|
<div id='WRAPPER'>
|
|
|
|
<!-- MENU DE LA PAGE -->
|
|
<nav id='MENU'>
|
|
<a href='Dashboard.php' id='ICON'></a>
|
|
<div>
|
|
<a href='Dashboard.php' id='dashboard'>Tableau de bord</a>
|
|
<a href='Consultations.php' id='consultations'>Consultations</a>
|
|
<a href='Medecins.php' id='medecin' class='active'>Gestion des médecins</a>
|
|
<a href='Patients.php' id='patient'>Gestion des patients</a>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
|
|
<!-- CONTAINER DE LA PAGE -->
|
|
<section id='CONTAINER'>
|
|
|
|
<!-- FIL D'ARIANE -->
|
|
<div id='BREADCRUMB'><a href='Dashboard.php'>Accueil</a> <a href='Medecins.php'>Gestion des médecins</a></a> </div>
|
|
|
|
<?php/********************************/
|
|
/* CONSULTER LES MÉDECIN */
|
|
/*************************************/ ?>
|
|
<article data-title="Rechercher un médecin">
|
|
<form method='POST' action='managers/'>
|
|
<br><h4>Recherche par nom et/ou prénom:</h4>
|
|
<input type='text' id='srPrenom' name='prenom' placeholder='Prénom' value=''><br>
|
|
<input type='text' id='srNom' name='nom' placeholder='NOM' value=''><br>
|
|
<br>
|
|
|
|
<input type='hidden' name='command' value='Medecin:search'>
|
|
<input type='submit' id='sbCherche' value='Lancer la recherche'>
|
|
</form><br>
|
|
<h3>Résultats:</h3><br>
|
|
<table id='searchResultMedecin'>
|
|
<?php
|
|
|
|
// pour chaque médecin
|
|
foreach($medecinsSearch as $MED){ if( isset($MED['Id']) && isset($MED['Civilite']) && isset($MED['Prenom']) && isset($MED['Nom']) ){
|
|
echo '<tr>';
|
|
// début modification
|
|
echo "<td colspan=4><form class='updPatient' action='managers/' method='POST'>";
|
|
echo "<input type='hidden' name='Id' value='". $PAT['Id'] ."'>";
|
|
echo "<input type='text' name='Civilite' value='". (($PAT['Civilite']=='M')?'Monsieur':'Madame') ."' readonly>";
|
|
echo "<input type='text' name='Prenom' value='". $PAT['Prenom'] ."'>";
|
|
echo "<input type='text' name='Nom' value='". strtoupper($PAT['Nom']) ."'>";
|
|
echo "<input type='hidden' name='command' value='Medecin:update'>";
|
|
echo "<input type='submit' value=''>";
|
|
echo '</form></td>';
|
|
// fin modification
|
|
|
|
// début suppression
|
|
echo "<td><form class='delMedecin' action='managers/' method='POST'>";
|
|
echo "<input type='hidden' name='id_medecin' value='". $PAT['Id'] ."'>";
|
|
echo "<input type='hidden' name='command' value='Medecin:delete'>";
|
|
echo "<input type='submit' value=''>";
|
|
echo '</form></td>';
|
|
// fin suppression
|
|
echo '</tr>';
|
|
}}
|
|
|
|
?>
|
|
</table>
|
|
|
|
</article>
|
|
|
|
<?php/**********************************/
|
|
/* AJOUTER UN MÉDECIN */
|
|
/*************************************/ ?>
|
|
<article data-title="Ajouter un médecin">
|
|
<form method='POST' action='managers/'>
|
|
<br><h4>Ajout d'un nouveau médecin</h4>
|
|
<input type='text' id='crPrenom' name='prenom' placeholder='Prénom' value='' required><br>
|
|
<input type='text' id='crNom' name='nom' placeholder='NOM' value='' required><br>
|
|
|
|
<input type='radio' name='civilite' class='crCiv' value='M' id='civ1' checked><label for='civ1'>Homme</label><br>
|
|
<input type='radio' name='civilite' class='crCiv' value='F' id='civ2'><label for='civ2'>Femme</label><br>
|
|
<br>
|
|
|
|
<input type='hidden' name='command' value='Medecin:add'>
|
|
<input type='submit' id='sbCreer' value='Créer le médecin'>
|
|
</form>
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<script type='text/javascript' src='js/medecins.js'></script>
|
|
</body>
|
|
</html>
|