src/Entity/PageSlider.php line 15

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. /**
  8.  * @ORM\Table(name="page_slider")
  9.  * @ORM\Entity()
  10.  */
  11. class PageSlider
  12. {
  13.     use EntityTimestampableTrait;
  14.     use EntitySoftDeletableTrait;
  15.     /**
  16.      * @ORM\Id()
  17.      * @ORM\GeneratedValue()
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $subTitle;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $descTitle;
  29.     /**
  30.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  31.      */
  32.     private $media;
  33.     /**
  34.      * @ORM\ManyToOne(targetEntity="Page")
  35.      */
  36.     private $page;
  37.     /**
  38.      * @ORM\Column(type="integer", nullable=true)
  39.      */
  40.     private $position;
  41.     /**
  42.      * @ORM\Column(type="boolean", nullable=true)
  43.      */
  44.     private $active;
  45.     public function __construct()
  46.     {
  47.         $this->active true;
  48.         $this->position 1;
  49.     }
  50.     /**
  51.      * @return mixed
  52.      */
  53.     public function getId()
  54.     {
  55.         return $this->id;
  56.     }
  57.     /**
  58.      * @return mixed
  59.      */
  60.     public function getPage()
  61.     {
  62.         return $this->page;
  63.     }
  64.     /**
  65.      * @param mixed $page
  66.      */
  67.     public function setPage($page): void
  68.     {
  69.         $this->page $page;
  70.     }
  71.     /**
  72.      * @return mixed
  73.      */
  74.     public function getPosition()
  75.     {
  76.         return $this->position;
  77.     }
  78.     /**
  79.      * @param mixed $position
  80.      */
  81.     public function setPosition($position): void
  82.     {
  83.         $this->position $position;
  84.     }
  85.     /**
  86.      * @return mixed
  87.      */
  88.     public function getActive()
  89.     {
  90.         return $this->active;
  91.     }
  92.     /**
  93.      * @param mixed $active
  94.      */
  95.     public function setActive($active): void
  96.     {
  97.         $this->active $active;
  98.     }
  99.     /**
  100.      * @return mixed
  101.      */
  102.     public function getSubTitle()
  103.     {
  104.         return $this->subTitle;
  105.     }
  106.     /**
  107.      * @param mixed $subTitle
  108.      */
  109.     public function setSubTitle($subTitle): void
  110.     {
  111.         $this->subTitle $subTitle;
  112.     }
  113.     /**
  114.      * @return mixed
  115.      */
  116.     public function getDescTitle()
  117.     {
  118.         return $this->descTitle;
  119.     }
  120.     /**
  121.      * @param mixed $descTitle
  122.      */
  123.     public function setDescTitle($descTitle): void
  124.     {
  125.         $this->descTitle $descTitle;
  126.     }
  127.     /**
  128.      * @return mixed
  129.      */
  130.     public function getMedia()
  131.     {
  132.         return $this->media;
  133.     }
  134.     /**
  135.      * @param mixed $media
  136.      */
  137.     public function setMedia($media): void
  138.     {
  139.         $this->media $media;
  140.     }
  141. }