2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* This file is part of Zwii.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @license GNU General Public License, version 3
|
|
|
|
* @link http://zwiicms.com/
|
|
|
|
*/
|
|
|
|
|
2020-07-06 12:14:13 +02:00
|
|
|
|
2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* Confirmation de suppression
|
|
|
|
*/
|
|
|
|
$(".blogCommentDelete").on("click", function() {
|
|
|
|
var _this = $(this);
|
2020-07-06 12:14:13 +02:00
|
|
|
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
|
|
|
|
return core.confirm("Êtes-vous sûr de vouloir 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-06 12:14:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirmation de suppression en masse
|
|
|
|
*/
|
2020-07-02 19:48:47 +02:00
|
|
|
$(".blogCommentDeleteAll").on("click", function() {
|
|
|
|
var _this = $(this);
|
2020-07-06 12:14:13 +02:00
|
|
|
var nombre = "<?php echo count($this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'comment' ])); ?>";
|
|
|
|
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
|
|
|
|
if( nombre === "1"){
|
|
|
|
var message = "Êtes-vous sûr de vouloir supprimer le commentaire de l'article " + nom + " ?";
|
|
|
|
} else{
|
|
|
|
var message = "Êtes-vous sûr de vouloir 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"));
|
|
|
|
});
|
|
|
|
});
|