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>
|
2024-01-14 19:31:28 +01:00
|
|
|
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
|
2022-12-29 17:02:20 +01:00
|
|
|
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
2020-09-01 20:48:40 +02:00
|
|
|
* @link http://zwiicms.fr/
|
2018-04-02 08:29:19 +02:00
|
|
|
*/
|
|
|
|
|
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);
|
2023-01-19 11:38:23 +01:00
|
|
|
var message = "<?php echo helper::translate('Supprimer le commentaire ?'); ?>";
|
|
|
|
return core.confirm(message , 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
|
|
|
|
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);
|
2023-01-19 11:38:23 +01:00
|
|
|
var message = "<?php echo helper::translate('Approuver le commentaire ?'); ?>";
|
|
|
|
return core.confirm(message , function() {
|
2020-07-16 12:06:51 +02:00
|
|
|
$(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);
|
2023-01-19 11:38:23 +01:00
|
|
|
var message = "<?php echo helper::translate('Rejeter le commentaire ?'); ?>";
|
|
|
|
return core.confirm(message , function() {
|
2020-07-16 12:06:51 +02:00
|
|
|
$(location).attr("href", _this.attr("href"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
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
|
|
|
if( nombre === "1"){
|
2023-01-19 11:38:23 +01:00
|
|
|
var message = "<?php echo helper::translate('Supprimer le commentaire ?'); ?>";
|
2021-04-26 22:03:49 +02:00
|
|
|
} else {
|
2023-02-23 20:19:54 +01:00
|
|
|
var message = "<?php echo helper::translate('Supprimer tous les commentairess ?'); ?>";
|
2020-07-06 12:14:13 +02:00
|
|
|
}
|
|
|
|
return core.confirm(message, function() {
|
2020-07-02 19:48:47 +02:00
|
|
|
$(location).attr("href", _this.attr("href"));
|
|
|
|
});
|
|
|
|
});
|