src/Entity/PageSection.php line 21

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