src/Entity/PageFaq.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_faq")
  13.  * @ORM\Entity(repositoryClass="App\Repository\PageFaqRepository")
  14.  * @SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=false)
  15.  * @ExclusionPolicy("all")
  16.  */
  17. class PageFaq 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="text", nullable=true)
  35.      * @Expose()
  36.      * @Groups({"Page"})
  37.      */
  38.     private $description;
  39.     /**
  40.      * @ORM\ManyToOne(targetEntity="Page")
  41.      */
  42.     private $page;
  43.     /**
  44.      * @ORM\Column(type="integer", nullable=true)
  45.      */
  46.     private $position;
  47.     public function __construct()
  48.     {
  49.         $this->position 1;
  50.     }
  51.     public function __toString()
  52.     {
  53.         return $this->title;
  54.     }
  55.     /**
  56.      * @return mixed
  57.      */
  58.     public function getId()
  59.     {
  60.         return $this->id;
  61.     }
  62.     /**
  63.      * @return mixed
  64.      */
  65.     public function getTitle()
  66.     {
  67.         return $this->title;
  68.     }
  69.     /**
  70.      * @param mixed $title
  71.      */
  72.     public function setTitle($title)
  73.     {
  74.         $this->title $title;
  75.     }
  76.     /**
  77.      * @return mixed
  78.      */
  79.     public function getDescription()
  80.     {
  81.         return $this->description;
  82.     }
  83.     /**
  84.      * @param mixed $description
  85.      */
  86.     public function setDescription($description)
  87.     {
  88.         $this->description $description;
  89.     }
  90.     /**
  91.      * @return mixed
  92.      */
  93.     public function getMedia()
  94.     {
  95.         return $this->media;
  96.     }
  97.     /**
  98.      * @param mixed $media
  99.      */
  100.     public function setMedia($media)
  101.     {
  102.         $this->media $media;
  103.     }
  104.     /**
  105.      * @return mixed
  106.      */
  107.     public function getPage()
  108.     {
  109.         return $this->page;
  110.     }
  111.     /**
  112.      * @param mixed $page
  113.      */
  114.     public function setPage($page)
  115.     {
  116.         $this->page $page;
  117.     }
  118.     /**
  119.      * @return int
  120.      */
  121.     public function getPosition()
  122.     {
  123.         return $this->position;
  124.     }
  125.     /**
  126.      * @param int $position
  127.      */
  128.     public function setPosition($position)
  129.     {
  130.         $this->position $position;
  131.     }
  132. }