Merge branch '10400' into data_engine
This commit is contained in:
commit
d1d0a485d7
@ -179,7 +179,7 @@ class blog extends common {
|
|||||||
$comment['approval'] = array_key_exists('approval', $comment) === false ? true : $comment['approval'] ;
|
$comment['approval'] = array_key_exists('approval', $comment) === false ? true : $comment['approval'] ;
|
||||||
if ( $this->getData(['module', $this->getUrl(0), $this->getUrl(2),'commentApproved']) === true) {
|
if ( $this->getData(['module', $this->getUrl(0), $this->getUrl(2),'commentApproved']) === true) {
|
||||||
$buttonApproval = template::button('blogCommentApproved' . $commentIds[$i], [
|
$buttonApproval = template::button('blogCommentApproved' . $commentIds[$i], [
|
||||||
'class' => $comment['approval'] === true ? 'blogCommentReject buttonGreen' : 'blogCommentApproved buttonRed' ,
|
'class' => $comment['approval'] === true ? 'blogCommentRejected buttonGreen' : 'blogCommentApproved buttonRed' ,
|
||||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/commentApprove/' . $this->getUrl(2) . '/' . $commentIds[$i] . '/' . $_SESSION['csrf'] ,
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/commentApprove/' . $this->getUrl(2) . '/' . $commentIds[$i] . '/' . $_SESSION['csrf'] ,
|
||||||
'value' => $comment['approval'] === true ? 'A' : 'R'
|
'value' => $comment['approval'] === true ? 'A' : 'R'
|
||||||
]);
|
]);
|
||||||
|
@ -25,7 +25,7 @@ $(".blogCommentDelete").on("click", function() {
|
|||||||
/**
|
/**
|
||||||
* Confirmation d'approbation
|
* Confirmation d'approbation
|
||||||
*/
|
*/
|
||||||
$(".blogCommentApprove").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), $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() {
|
||||||
@ -36,7 +36,7 @@ $(".blogCommentApprove").on("click", function() {
|
|||||||
/**
|
/**
|
||||||
* Confirmation de rejet
|
* Confirmation de rejet
|
||||||
*/
|
*/
|
||||||
$(".blogCommentReject").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), $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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user