debug
This commit is contained in:
53
gestion/modifVotation.php
Normal file
53
gestion/modifVotation.php
Normal file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
require_once '../session_init.php';
|
||||
require_once 'config.inc.php';
|
||||
require_once 'db.class.php';
|
||||
require_once 'entete.php';
|
||||
require_once 'fonctions.inc.php';
|
||||
|
||||
$action = $_GET["action"];
|
||||
$idVotation = $_GET["id"];
|
||||
|
||||
print('<br><br>
|
||||
<!-- lalis Grid Section -->
|
||||
|
||||
<section id="content">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h4>Choisissez une votations à modifier</h4>' . EOL);
|
||||
|
||||
$db = new db();
|
||||
if (empty($action))
|
||||
{
|
||||
$action="modif";
|
||||
choixVotation('./modifVotation.php') ;
|
||||
|
||||
}else
|
||||
{
|
||||
if ($action == "cloture")
|
||||
{
|
||||
if (empty($idVotation))
|
||||
{
|
||||
// choix de la votation à cloturer
|
||||
choixVotation('./modifVotation.php', 0);
|
||||
}else
|
||||
{
|
||||
//TODO alert "Do you want to delete ..."
|
||||
$query = "UPDATE liste_votations SET status=0 WHERE id='" . $db->protect($idVotation) . "'"; // clotûre
|
||||
$db->query($query);
|
||||
}
|
||||
}elseif ($action == "modif")
|
||||
{
|
||||
//TODO
|
||||
votationForm($path, $titre, $libelle, $dateDebut, $dateFin, $status);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
print(' </div>
|
||||
</div>
|
||||
</div>
|
||||
</section>');
|
||||
require_once './footer.html';
|
||||
?>
|
Reference in New Issue
Block a user