Blog bug effacement commentaires
This commit is contained in:
parent
67565a1d93
commit
78f18afab8
@ -17,7 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
$(".blogCommentDelete").on("click", function() {
|
$(".blogCommentDelete").on("click", function() {
|
||||||
var _this = $(this);
|
var _this = $(this);
|
||||||
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
|
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() {
|
return core.confirm("Supprimer le commentaire de l'article " + nom + " ?", function() {
|
||||||
$(location).attr("href", _this.attr("href"));
|
$(location).attr("href", _this.attr("href"));
|
||||||
});
|
});
|
||||||
@ -28,7 +28,7 @@ $(".blogCommentDelete").on("click", function() {
|
|||||||
*/
|
*/
|
||||||
$(".blogCommentApproved").on("click", function() {
|
$(".blogCommentApproved").on("click", function() {
|
||||||
var _this = $(this);
|
var _this = $(this);
|
||||||
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
|
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() {
|
return core.confirm("Approuver le commentaire de l'article " + nom + " ?", function() {
|
||||||
$(location).attr("href", _this.attr("href"));
|
$(location).attr("href", _this.attr("href"));
|
||||||
});
|
});
|
||||||
@ -39,7 +39,7 @@ $(".blogCommentApproved").on("click", function() {
|
|||||||
*/
|
*/
|
||||||
$(".blogCommentRejected").on("click", function() {
|
$(".blogCommentRejected").on("click", function() {
|
||||||
var _this = $(this);
|
var _this = $(this);
|
||||||
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
|
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() {
|
return core.confirm("Rejeter le commentaire de l'article " + nom + " ?", function() {
|
||||||
$(location).attr("href", _this.attr("href"));
|
$(location).attr("href", _this.attr("href"));
|
||||||
});
|
});
|
||||||
@ -50,7 +50,7 @@ $(".blogCommentRejected").on("click", function() {
|
|||||||
*/
|
*/
|
||||||
$(".blogCommentDeleteAll").on("click", function() {
|
$(".blogCommentDeleteAll").on("click", function() {
|
||||||
var _this = $(this);
|
var _this = $(this);
|
||||||
var nombre = "<?php echo count($this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'comment' ])); ?>";
|
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' ]); ?>";
|
var nom = "<?php echo $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'title' ]); ?>";
|
||||||
if( nombre === "1"){
|
if( nombre === "1"){
|
||||||
var message = "Supprimer le commentaire de l'article " + nom + " ?";
|
var message = "Supprimer le commentaire de l'article " + nom + " ?";
|
||||||
|
Loading…
Reference in New Issue
Block a user