You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
790B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Site;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\CaracoleBundle\Doctrine\Extension\FilterSectionInterface;
  5. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  6. use Lc\SovBundle\Model\Site\NewsModel as SovNewsModel;
  7. /**
  8. * @ORM\MappedSuperclass()
  9. */
  10. abstract class NewsModel extends SovNewsModel implements FilterSectionInterface
  11. {
  12. /**
  13. * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Section\SectionInterface", inversedBy="news")
  14. * @ORM\JoinColumn(nullable=false)
  15. */
  16. protected $section;
  17. public function getSection(): SectionInterface
  18. {
  19. return $this->section;
  20. }
  21. public function setSection(SectionInterface $section): self
  22. {
  23. $this->section = $section;
  24. return $this;
  25. }
  26. }