예제 #1
0
파일: Lead.php 프로젝트: dongilbert/mautic
 /**
  * @param DoNotContact $doNotContact
  */
 public function removeDoNotContactEntry(DoNotContact $doNotContact)
 {
     $this->changes['dnc_channel_status'][$doNotContact->getChannel()] = ['reason' => DoNotContact::IS_CONTACTABLE, 'old_reason' => $doNotContact->getReason(), 'comments' => $doNotContact->getComments()];
     // @deprecated to be removed in 2.0
     $this->changes['dnc_status'] = ['removed', $doNotContact->getComments()];
     $this->doNotContact->removeElement($doNotContact);
 }
예제 #2
0
파일: Lead.php 프로젝트: HomeRefill/mautic
 /**
  * @param DoNotContact $doNotContact
  */
 public function removeDoNotContactEntry(DoNotContact $doNotContact)
 {
     $this->changes['dnc_status'] = array('removed', $doNotContact->getChannel());
     $this->doNotContact->removeElement($doNotContact);
 }