src/Entity/SaleHighlight.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Sale;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Gedmo\Mapping\Annotation as Gedmo;
  7. /**
  8.  * @ORM\Entity(repositoryClass="App\Repository\SaleHighlightRepository")
  9.  *
  10.  * @ORM\Table(name="sale_highlight")
  11.  */
  12. class SaleHighlight
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      *
  17.      * @ORM\Column(type="bigint")
  18.      *
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     protected $id;
  22.     /**
  23.      * @ORM\Column(type="string")
  24.      *
  25.      * @Gedmo\Translatable
  26.      */
  27.     protected $title;
  28.     /**
  29.      * @ORM\Column(type="string")
  30.      *
  31.      * @Gedmo\Translatable
  32.      */
  33.     protected $image;
  34.     /**
  35.      * @ORM\Column(type="string")
  36.      *
  37.      * @Gedmo\Translatable
  38.      */
  39.     protected $linkLabel;
  40.     /**
  41.      * @ORM\Column(type="string", nullable=true)
  42.      *
  43.      * @Gedmo\Translatable
  44.      */
  45.     protected $link;
  46.     /**
  47.      * Locale.
  48.      *
  49.      * @Gedmo\Locale
  50.      */
  51.     protected $locale;
  52.     /**
  53.      * @ORM\ManyToOne(targetEntity="App\Entity\Sale", inversedBy="highlights", fetch="EAGER", cascade={"persist"})
  54.      *
  55.      * @ORM\JoinColumn(nullable=false)
  56.      */
  57.     private $sale;
  58.     /** @var array */
  59.     private $translations;
  60.     public function getId()
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function setSale(Sale $sale): void
  65.     {
  66.         $this->sale $sale;
  67.     }
  68.     public function getSale()
  69.     {
  70.         return $this->sale;
  71.     }
  72.     public function getTitle()
  73.     {
  74.         return $this->title;
  75.     }
  76.     public function setTitle($title): void
  77.     {
  78.         $this->title $title;
  79.     }
  80.     public function getImage()
  81.     {
  82.         return $this->image;
  83.     }
  84.     public function setImage($image): void
  85.     {
  86.         $this->image str_replace('http:''https:'$image);
  87.     }
  88.     public function getLinkLabel()
  89.     {
  90.         return $this->linkLabel;
  91.     }
  92.     public function setLinkLabel($linkLabel): void
  93.     {
  94.         $this->linkLabel $linkLabel;
  95.     }
  96.     public function getLink()
  97.     {
  98.         return $this->link;
  99.     }
  100.     public function setLink($link): void
  101.     {
  102.         $this->link $link;
  103.     }
  104.     public function getLocale()
  105.     {
  106.         return $this->locale;
  107.     }
  108.     public function setLocale($locale): void
  109.     {
  110.         $this->locale $locale;
  111.     }
  112.     public function setTranslatableLocale($locale): void
  113.     {
  114.         $this->locale $locale;
  115.     }
  116.     public function setTranslations(array $translations): void
  117.     {
  118.         $this->translations $translations;
  119.     }
  120. }