if($countUsers > 0) { | if($countUsers > 0) { | ||||
$this->addFlash('success', 'Actualité envoyée à '.count($users).' utilisateurs.'); | $this->addFlash('success', 'Actualité envoyée à '.count($users).' utilisateurs.'); | ||||
$news->setIsSent(true) ; | |||||
$this->em->persist($news); | |||||
$this->em->flush() ; | |||||
} | } | ||||
else { | else { | ||||
$this->addFlash('error', 'Aucun utilisateur inscrit à la newsletter.'); | $this->addFlash('error', 'Aucun utilisateur inscrit à la newsletter.'); |
*/ | */ | ||||
protected $date; | protected $date; | ||||
/** | |||||
* @ORM\Column(type="boolean", nullable=true) | |||||
*/ | |||||
protected $isSent; | |||||
public function getDate(): ?\DateTimeInterface | public function getDate(): ?\DateTimeInterface | ||||
{ | { | ||||
return $this->date; | return $this->date; | ||||
return $this; | return $this; | ||||
} | } | ||||
public function getIsSent(): ?bool | |||||
{ | |||||
return $this->isSent; | |||||
} | |||||
public function setIsSent(?bool $isSent): self | |||||
{ | |||||
$this->isSent = $isSent; | |||||
return $this; | |||||
} | |||||
} | } |
jQuery(document).ready(function () { | jQuery(document).ready(function () { | ||||
custom_switch_merchants(); | custom_switch_merchants(); | ||||
initAdminLtePlugin(); | initAdminLtePlugin(); | ||||
initButtonConfirm() ; | |||||
}); | }); | ||||
function initButtonConfirm() { | |||||
$('.btn-confirm-js').click(function() { | |||||
return confirm('Êtes-vous sûr de vouloir réaliser cette action ?') ; | |||||
}) ; | |||||
} | |||||
function initLcNoty() { | function initLcNoty() { | ||||
$('.lc-noty').each(function () { | $('.lc-noty').each(function () { | ||||
generateNotice($(this).data('type'), $(this).html()); | generateNotice($(this).data('type'), $(this).html()); |
monsieur: Monsieur | monsieur: Monsieur | ||||
subscribeNewsletter: S'inscrire à la newsletter | subscribeNewsletter: S'inscrire à la newsletter | ||||
send: Envoyer | send: Envoyer | ||||
isSent: Envoyée | |||||
Supplier: | Supplier: | ||||
user: Utilisateur lié | user: Utilisateur lié |