Blog 6.4 Dialogues JS files

This commit is contained in:
Fred Tempez 2023-01-19 11:38:23 +01:00
parent 737af38b70
commit d690331c7a
2 changed files with 14 additions and 11 deletions

View File

@ -58,5 +58,10 @@
"Éditer l'article": "",
"Effacer l'article": "",
"État": "",
"Masquer l'image de couverture dans l'article": ""
"Masquer l'image de couverture dans l'article": "",
"Supprimer le commentaire ?": "",
"Approuver le commentaire ?": "",
"Rejeter le commentaire ?": "",
"Supprimer tous les commentaire ?": "",
"Êtes-vous sûr de vouloir supprimer cet article ?": ""
}

View File

@ -17,8 +17,8 @@
*/
$(".blogCommentDelete").on("click", function() {
var _this = $(this);
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() {
var message = "<?php echo helper::translate('Supprimer le commentaire ?'); ?>";
return core.confirm(message , function() {
$(location).attr("href", _this.attr("href"));
});
});
@ -28,8 +28,8 @@ $(".blogCommentDelete").on("click", function() {
*/
$(".blogCommentApproved").on("click", function() {
var _this = $(this);
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'title' ]); ?>";
return core.confirm("Approuver le commentaire de l'article " + nom + " ?", function() {
var message = "<?php echo helper::translate('Approuver le commentaire ?'); ?>";
return core.confirm(message , function() {
$(location).attr("href", _this.attr("href"));
});
});
@ -39,8 +39,8 @@ $(".blogCommentApproved").on("click", function() {
*/
$(".blogCommentRejected").on("click", function() {
var _this = $(this);
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'title' ]); ?>";
return core.confirm("Rejeter le commentaire de l'article " + nom + " ?", function() {
var message = "<?php echo helper::translate('Rejeter le commentaire ?'); ?>";
return core.confirm(message , function() {
$(location).attr("href", _this.attr("href"));
});
});
@ -50,12 +50,10 @@ $(".blogCommentRejected").on("click", function() {
*/
$(".blogCommentDeleteAll").on("click", function() {
var _this = $(this);
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 + " ?";
var message = "<?php echo helper::translate('Supprimer le commentaire ?'); ?>";
} else {
var message = "Supprimer les " + nombre + " commentaires de l'article " + nom + " ?";
var message = "<?php echo helper::translate('Supprimer tous les commentaires ?'); ?>";
}
return core.confirm(message, function() {
$(location).attr("href", _this.attr("href"));