Display confirmation page before to delete all votes of one poll.

This commit is contained in:
Olivier PEREZ 2014-12-21 00:04:23 +01:00
parent 8d46ec6c33
commit 45716d15c1
2 changed files with 18 additions and 0 deletions

View File

@ -128,6 +128,13 @@ if (!empty($_POST['delete_comment'])) {
// Remove all votes
// -------------------------------
if (isset($_POST['remove_all_votes'])) {
$smarty->assign('poll_id', $poll_id);
$smarty->assign('admin_poll_id', $admin_poll_id);
$smarty->assign('title', _('Poll') . ' - ' . $poll->title);
$smarty->display('confirm/delete_votes.tpl');
exit;
}
if (isset($_POST['confirm_remove_all_votes'])) {
$adminPollService->cleanVotes($poll_id);
}

View File

@ -0,0 +1,11 @@
{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 all votes of the poll")}</h2>
<p><button class="btn btn-default" type="submit" name="cancel">{_("Keep votes")}</button>
<button type="submit" name="confirm_remove_all_votes" class="btn btn-danger">{_("Remove all votes!")}</button></p>
</div>
</form>
{/block}