src/Entity/PageProgram.php line 19

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Entity\Traits\EntitySoftDeletableTrait;
  5. use App\Entity\Traits\EntityTimestampableTrait;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation\SoftDeleteable;
  8. use JMS\Serializer\Annotation\ExclusionPolicy;
  9. /**
  10.  * @ORM\Table(name="page_program")
  11.  * @ORM\Entity(repositoryClass="App\Repository\PageProgramRepository")
  12.  * @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
  13.  * @ExclusionPolicy("all")
  14.  */
  15. class PageProgram extends BaseDomain
  16. {
  17.     use EntityTimestampableTrait;
  18.     use EntitySoftDeletableTrait;
  19.     /**
  20.      * @ORM\Id()
  21.      * @ORM\GeneratedValue()
  22.      * @ORM\Column(type="integer")
  23.      */
  24.     private $id;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $title;
  29.     /**
  30.      * @ORM\Column(type="string", length=255, nullable=true)
  31.      */
  32.     private $link;
  33.     /**
  34.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  35.      */
  36.     private $icon;
  37.     /**
  38.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  39.      */
  40.     private $media;
  41.     /**
  42.      * @ORM\ManyToOne(targetEntity="Page",  inversedBy="icons")
  43.      */
  44.     private $page;
  45.     /**
  46.      * @ORM\Column(type="integer", nullable=true)
  47.      */
  48.     private $position;
  49.     public function __construct()
  50.     {
  51.         $this->position 1;
  52.     }
  53.     /**
  54.      * @return mixed
  55.      */
  56.     public function getId()
  57.     {
  58.         return $this->id;
  59.     }
  60.     /**
  61.      * @return mixed
  62.      */
  63.     public function getPage()
  64.     {
  65.         return $this->page;
  66.     }
  67.     /**
  68.      * @param mixed $page
  69.      */
  70.     public function setPage($page)
  71.     {
  72.         $this->page $page;
  73.     }
  74.     /**
  75.      * @return int
  76.      */
  77.     public function getPosition()
  78.     {
  79.         return $this->position;
  80.     }
  81.     /**
  82.      * @param int $position
  83.      */
  84.     public function setPosition($position)
  85.     {
  86.         $this->position $position;
  87.     }
  88.     /**
  89.      * @return mixed
  90.      */
  91.     public function getTitle()
  92.     {
  93.         return $this->title;
  94.     }
  95.     /**
  96.      * @param mixed $title
  97.      */
  98.     public function setTitle($title)
  99.     {
  100.         $this->title $title;
  101.     }
  102.     /**
  103.      * @return mixed
  104.      */
  105.     public function getLink()
  106.     {
  107.         return $this->link;
  108.     }
  109.     /**
  110.      * @param mixed $link
  111.      */
  112.     public function setLink($link)
  113.     {
  114.         $this->link $link;
  115.     }
  116.     /**
  117.      * @return mixed
  118.      */
  119.     public function getIcon()
  120.     {
  121.         return $this->icon;
  122.     }
  123.     /**
  124.      * @param mixed $icon
  125.      */
  126.     public function setIcon($icon)
  127.     {
  128.         $this->icon $icon;
  129.     }
  130.     /**
  131.      * @return mixed
  132.      */
  133.     public function getMedia()
  134.     {
  135.         return $this->media;
  136.     }
  137.     /**
  138.      * @param mixed $media
  139.      */
  140.     public function setMedia($media)
  141.     {
  142.         $this->media $media;
  143.     }
  144. }