/** | /** | ||||
* @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Distribution\DistributionInterface") | * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Distribution\DistributionInterface") | ||||
* @ORM\JoinColumn(nullable=false) | |||||
* @ORM\JoinColumn(nullable=true) | |||||
*/ | */ | ||||
protected $distribution; | protected $distribution; | ||||
return $section->getDevAlias() == SectionModel::DEVALIAS_COMMON; | return $section->getDevAlias() == SectionModel::DEVALIAS_COMMON; | ||||
} | } | ||||
// @TODO : à voir si pertinent | |||||
public function getNewsletter(SectionInterface $section) | |||||
{ | |||||
$newsletters = $section->getNewsletters(); | |||||
foreach ($newsletters as $newsletter) { | |||||
if ($newsletter->getIsMain()) { | |||||
return $newsletter; | |||||
} | |||||
} | |||||
return false; | |||||
} | |||||
} | } |