ZwiiCMS/module/blog/view/comment/comment.js.php

64 lines
2.1 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
/**
2021-02-17 13:51:12 +01:00
* This file is part of Zwii.
2018-04-02 08:29:19 +02:00
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Rémi Jean <remi.jean@outlook.com>
* @copyright Copyright (C) 2008-2018, Rémi Jean
2021-02-17 13:49:58 +01:00
* @author Frédéric Tempez <frederic.tempez@outlook.com>
* @copyright Copyright (C) 2018-2021, Frédéric Tempez
2018-04-02 08:29:19 +02:00
* @license GNU General Public License, version 3
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
2018-04-02 08:29:19 +02:00
/**
* Confirmation de suppression
*/
$(".blogCommentDelete").on("click", function() {
var _this = $(this);
2021-04-26 22:05:46 +02:00
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'title' ]); ?>";
return core.confirm("Supprimer le commentaire de l'article " + nom + " ?", function() {
2018-04-02 08:29:19 +02:00
$(location).attr("href", _this.attr("href"));
});
2020-07-02 19:48:47 +02:00
});
2020-07-16 12:06:51 +02:00
/**
* Confirmation d'approbation
*/
2020-10-27 21:37:56 +01:00
$(".blogCommentApproved").on("click", function() {
2020-07-16 12:06:51 +02:00
var _this = $(this);
2021-04-26 22:05:46 +02:00
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'title' ]); ?>";
2020-07-16 12:06:51 +02:00
return core.confirm("Approuver le commentaire de l'article " + nom + " ?", function() {
$(location).attr("href", _this.attr("href"));
});
});
/**
* Confirmation de rejet
*/
2020-10-27 21:37:56 +01:00
$(".blogCommentRejected").on("click", function() {
2020-07-16 12:06:51 +02:00
var _this = $(this);
2021-04-26 22:05:46 +02:00
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'title' ]); ?>";
2020-07-16 12:06:51 +02:00
return core.confirm("Rejeter le commentaire de l'article " + nom + " ?", function() {
$(location).attr("href", _this.attr("href"));
});
});
/**
* Confirmation de suppression en masse
*/
2020-07-02 19:48:47 +02:00
$(".blogCommentDeleteAll").on("click", function() {
var _this = $(this);
2021-04-26 22:05:46 +02:00
var nombre = "<?php echo count($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment' ])); ?>";
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
if( nombre === "1"){
var message = "Supprimer le commentaire de l'article " + nom + " ?";
} else{
var message = "Supprimer les " + nombre + " commentaires de l'article " + nom + " ?";
}
return core.confirm(message, function() {
2020-07-02 19:48:47 +02:00
$(location).attr("href", _this.attr("href"));
});
});