vendor/uvdesk/core-framework/Entity/Website.php line 13

Open in your IDE?
  1. <?php
  2. namespace Webkul\UVDesk\CoreFrameworkBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * website
  6.  * @ORM\Entity(repositoryClass=null)
  7.  * @ORM\HasLifecycleCallbacks()
  8.  * @ORM\Table(name="uv_website")
  9.  */
  10. class Website
  11. {
  12.     /**
  13.      * @var int
  14.      * @ORM\Id()
  15.      * @ORM\Column(type="integer")
  16.      * @ORM\GeneratedValue(strategy="AUTO")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @var string
  21.      * @ORM\Column(type="string", length=191)
  22.      */
  23.     private $name;
  24.     /**
  25.      * @var string
  26.      * @ORM\Column(type="string", length=191, unique=true)
  27.      */
  28.     private $code;
  29.     /**
  30.      * @var string
  31.      * @ORM\Column(type="string", length=191, nullable=true)
  32.      */
  33.     private $logo;
  34.     /**
  35.      * @var string
  36.      * @ORM\Column(type="string", length=191)
  37.      */
  38.     private $themeColor;
  39.     /**
  40.      * @var string
  41.      * @ORM\Column(type="string", length=191, nullable=true)
  42.      */
  43.     private $favicon;
  44.     /**
  45.      * @var \DateTime
  46.      * @ORM\Column(type="datetime")
  47.      */
  48.     private $createdAt;
  49.     /**
  50.      * @var \DateTime
  51.      * @ORM\Column(type="datetime")
  52.      */
  53.     private $updatedAt;
  54.     /**
  55.      * @var bool
  56.      * @ORM\Column(type="boolean", nullable=true, options={"default": true})
  57.      */
  58.     private $isActive;
  59.     /**
  60.      * @ORM\Column(type="string", length=191, nullable=true)
  61.      */
  62.     private $timezone;
  63.     /**
  64.      * @ORM\Column(type="string", length=191, nullable=true)
  65.      */
  66.     private $timeformat;
  67.     /**
  68.      * Get id
  69.      *
  70.      * @return int
  71.      */
  72.     public function getId()
  73.     {
  74.         return $this->id;
  75.     }
  76.     /**
  77.      * Set name
  78.      *
  79.      * @param string $name
  80.      *
  81.      * @return website
  82.      */
  83.     public function setName($name)
  84.     {
  85.         $this->name $name;
  86.         return $this;
  87.     }
  88.     /**
  89.      * Get name
  90.      *
  91.      * @return string
  92.      */
  93.     public function getName()
  94.     {
  95.         return $this->name;
  96.     }
  97.     /**
  98.      * Set code
  99.      *
  100.      * @param string $code
  101.      *
  102.      * @return website
  103.      */
  104.     public function setCode($code)
  105.     {
  106.         $this->code $code;
  107.         return $this;
  108.     }
  109.     /**
  110.      * Get code
  111.      *
  112.      * @return string
  113.      */
  114.     public function getCode()
  115.     {
  116.         return $this->code;
  117.     }
  118.     /**
  119.      * Set logo
  120.      *
  121.      * @param string $logo
  122.      *
  123.      * @return website
  124.      */
  125.     public function setLogo($logo)
  126.     {
  127.         $this->logo $logo;
  128.         return $this;
  129.     }
  130.     /**
  131.      * Get logo
  132.      *
  133.      * @return string
  134.      */
  135.     public function getLogo()
  136.     {
  137.         return $this->logo;
  138.     }
  139.         /**
  140.      * Set themeColor
  141.      *
  142.      * @param string $themeColor
  143.      *
  144.      * @return website
  145.      */
  146.     public function setThemeColor($themeColor)
  147.     {
  148.         $this->themeColor $themeColor;
  149.         return $this;
  150.     }
  151.     /**
  152.      * Get themeColor
  153.      *
  154.      * @return string
  155.      */
  156.     public function getThemeColor()
  157.     {
  158.         return $this->themeColor;
  159.     }
  160.     /**
  161.      * Set favicon
  162.      *
  163.      * @param string $favicon
  164.      *
  165.      * @return website
  166.      */
  167.     public function setFavicon($favicon)
  168.     {
  169.         $this->favicon $favicon;
  170.         return $this;
  171.     }
  172.     /**
  173.      * Get favicon
  174.      *
  175.      * @return string
  176.      */
  177.     public function getFavicon()
  178.     {
  179.         return $this->favicon;
  180.     }
  181.     /**
  182.      * Set createdAt
  183.      *
  184.      * @param \DateTime $createdAt
  185.      *
  186.      * @return website
  187.      */
  188.     public function setCreatedAt($createdAt)
  189.     {
  190.         $this->createdAt $createdAt;
  191.         return $this;
  192.     }
  193.     /**
  194.      * Get createdAt
  195.      *
  196.      * @return \DateTime
  197.      */
  198.     public function getCreatedAt()
  199.     {
  200.         return $this->createdAt;
  201.     }
  202.     /**
  203.      * Set updatedAt
  204.      *
  205.      * @param \DateTime $updatedAt
  206.      *
  207.      * @return website
  208.      */
  209.     public function setUpdatedAt($updatedAt)
  210.     {
  211.         $this->updatedAt $updatedAt;
  212.         return $this;
  213.     }
  214.     /**
  215.      * Get updatedAt
  216.      *
  217.      * @return \DateTime
  218.      */
  219.     public function getUpdatedAt()
  220.     {
  221.         return $this->updatedAt;
  222.     }
  223.     /**
  224.      * Set isActive
  225.      *
  226.      * @param boolean $isActive
  227.      *
  228.      * @return website
  229.      */
  230.     public function setIsActive($isActive)
  231.     {
  232.         $this->isActive $isActive;
  233.         return $this;
  234.     }
  235.     /**
  236.      * Get isActive
  237.      *
  238.      * @return bool
  239.      */
  240.     public function getIsActive()
  241.     {
  242.         return $this->isActive;
  243.     }
  244.     public function getTimezone(): ?string
  245.     {
  246.         return $this->timezone;
  247.     }
  248.     public function setTimezone(?string $timezone): self
  249.     {
  250.         $this->timezone $timezone;
  251.         return $this;
  252.     }
  253.     public function getTimeformat(): ?string
  254.     {
  255.         return $this->timeformat;
  256.     }
  257.     public function setTimeformat(?string $timeformat): self
  258.     {
  259.         $this->timeformat $timeformat;
  260.         return $this;
  261.     }
  262.     
  263. }