<?php
namespace App\Entity;
use App\Repository\HelpRepository;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity(repositoryClass=HelpRepository::class)
*/
class Help
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $title;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $subTitle;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $background;
/**
* @Assert\Image(maxSize="2M")
*/
private $backgroundFile;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $video;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $description;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $btnName;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $btnLink;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $videoImage;
/**
* @Assert\Image(maxSize="2M")
*/
private $imageFile;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $videoLink;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulTitle;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulSubtitle;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulTitle1;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $helpfulSubtitle1;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulIcon1;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulTitle2;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $helpfulSubtitle2;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulIcon2;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulTitle3;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $helpfulSubtitle3;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $helpfulIcon3;
public function getId(): ?int
{
return $this->id;
}
public function getTitle(): ?string
{
return $this->title;
}
public function setTitle(string $title): self
{
$this->title = $title;
return $this;
}
public function getSubTitle(): ?string
{
return $this->subTitle;
}
public function setSubTitle(?string $subTitle): self
{
$this->subTitle = $subTitle;
return $this;
}
public function getBackground(): ?string
{
return $this->background;
}
public function setBackground(?string $background): self
{
$this->background = $background;
return $this;
}
public function getBackgroundFile()
{
return $this->backgroundFile;
}
public function setBackgroundFile($backgroundFile)
{
$this->backgroundFile = $backgroundFile;
return $this;
}
public function getVideo(): ?string
{
return $this->video;
}
public function setVideo(?string $video): self
{
$this->video = $video;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getBtnName(): ?string
{
return $this->btnName;
}
public function setBtnName(?string $btnName): self
{
$this->btnName = $btnName;
return $this;
}
public function getBtnLink(): ?string
{
return $this->btnLink;
}
public function setBtnLink(?string $btnLink): self
{
$this->btnLink = $btnLink;
return $this;
}
public function getVideoImage(): ?string
{
return $this->videoImage;
}
public function setVideoImage(?string $videoImage): self
{
$this->videoImage = $videoImage;
return $this;
}
public function getImageFile()
{
return $this->imageFile;
}
public function setImageFile($imageFile)
{
$this->imageFile = $imageFile;
return $this;
}
public function getVideoLink(): ?string
{
return $this->videoLink;
}
public function setVideoLink(?string $videoLink): self
{
$this->videoLink = $videoLink;
return $this;
}
public function getHelpfulTitle(): ?string
{
return $this->helpfulTitle;
}
public function setHelpfulTitle(?string $helpfulTitle): self
{
$this->helpfulTitle = $helpfulTitle;
return $this;
}
public function getHelpfulSubtitle(): ?string
{
return $this->helpfulSubtitle;
}
public function setHelpfulSubtitle(?string $helpfulSubtitle): self
{
$this->helpfulSubtitle = $helpfulSubtitle;
return $this;
}
public function getHelpfulTitle1(): ?string
{
return $this->helpfulTitle1;
}
public function setHelpfulTitle1(?string $helpfulTitle1): self
{
$this->helpfulTitle1 = $helpfulTitle1;
return $this;
}
public function getHelpfulSubtitle1(): ?string
{
return $this->helpfulSubtitle1;
}
public function setHelpfulSubtitle1(?string $helpfulSubtitle1): self
{
$this->helpfulSubtitle1 = $helpfulSubtitle1;
return $this;
}
public function getHelpfulIcon1(): ?string
{
return $this->helpfulIcon1;
}
public function setHelpfulIcon1(?string $helpfulIcon1): self
{
$this->helpfulIcon1 = $helpfulIcon1;
return $this;
}
public function getHelpfulTitle2(): ?string
{
return $this->helpfulTitle2;
}
public function setHelpfulTitle2(?string $helpfulTitle2): self
{
$this->helpfulTitle2 = $helpfulTitle2;
return $this;
}
public function getHelpfulSubtitle2(): ?string
{
return $this->helpfulSubtitle2;
}
public function setHelpfulSubtitle2(?string $helpfulSubtitle2): self
{
$this->helpfulSubtitle2 = $helpfulSubtitle2;
return $this;
}
public function getHelpfulIcon2(): ?string
{
return $this->helpfulIcon2;
}
public function setHelpfulIcon2(?string $helpfulIcon2): self
{
$this->helpfulIcon2 = $helpfulIcon2;
return $this;
}
public function getHelpfulTitle3(): ?string
{
return $this->helpfulTitle3;
}
public function setHelpfulTitle3(?string $helpfulTitle3): self
{
$this->helpfulTitle3 = $helpfulTitle3;
return $this;
}
public function getHelpfulSubtitle3(): ?string
{
return $this->helpfulSubtitle3;
}
public function setHelpfulSubtitle3(?string $helpfulSubtitle3): self
{
$this->helpfulSubtitle3 = $helpfulSubtitle3;
return $this;
}
public function getHelpfulIcon3(): ?string
{
return $this->helpfulIcon3;
}
public function setHelpfulIcon3(?string $helpfulIcon3): self
{
$this->helpfulIcon3 = $helpfulIcon3;
return $this;
}
}