Skip to content
Snippets Groups Projects
Commit 3829402a authored by Olivier PEREZ's avatar Olivier PEREZ
Browse files

Display a confirmation page before delete the poll (confirmation does nothing for now)

parent 07d5a336
No related branches found
No related tags found
No related merge requests found
......@@ -136,6 +136,21 @@ if (!empty($_POST['delete_comment'])) {
}
}
// -------------------------------
// Delete the entire poll
// -------------------------------
if (isset($_POST['delete_poll'])) {
$smarty->assign('poll_id', $poll_id);
$smarty->assign('admin_poll_id', $admin_poll_id);
$smarty->display('confirm/delete_poll.tpl');
exit;
}
if (isset($_POST['confirm_delete_poll'])) {
// TODO
}
// Retrieve data
$slots = $pollService->allSlotsByPollId($poll_id);
$votes = $pollService->allUserVotesByPollId($poll_id);
......
{extends file='page.tpl'}
{block name=main}
<form action="{$admin_poll_id|poll_url:true}" method="POST">
<div class="alert alert-danger text-center">
<h2>{_("Confirm removal of your poll")}</h2>
<p><button class="btn btn-default" type="submit" name="cancel">{_("Keep this poll")}</button>
<button type="submit" name="confirm_delete_poll" class="btn btn-danger">{_("Remove this poll!")}</button></p>
</div>
</form>
{/block}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment