src/AppBundle/MainBundle/Entity/Support_Attachments.php line 113

Open in your IDE?
  1. <?php
  2. namespace App\AppBundle\MainBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use JsonSerializable;
  6. /**
  7.  * AddOns
  8.  *
  9.  * @ORM\Entity
  10.  * @ORM\Table(name="support_attachments")
  11.  * @ORM\HasLifecycleCallbacks()
  12.  */
  13. class Support_Attachments implements JsonSerializable
  14. {
  15.     /**
  16.      * @ORM\Column(type="integer")
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", nullable=false)
  23.      * @Assert\NotBlank()
  24.      */
  25.     private $url;
  26.     /**
  27.      *
  28.      * Attachment Type = 1 - Email, 2 - Bug Reporting, 3 - New Idea
  29.      * @ORM\Column(type="integer", nullable=false)
  30.      * @Assert\NotBlank()
  31.      */
  32.     private $type;
  33.     /**
  34.      * @return mixed
  35.      */
  36.     public function getId()
  37.     {
  38.         return $this->id;
  39.     }
  40.     /**
  41.      * @return mixed
  42.      */
  43.     public function getUrl()
  44.     {
  45.         return $this->url;
  46.     }
  47.     /**
  48.      * @param mixed $url
  49.      */
  50.     public function setUrl($url)
  51.     {
  52.         $this->url $url;
  53.     }
  54.     /**
  55.      * @return mixed
  56.      */
  57.     public function getType()
  58.     {
  59.         return $this->type;
  60.     }
  61.     /**
  62.      * @param mixed $type
  63.      */
  64.     public function setType($type)
  65.     {
  66.         $this->type $type;
  67.     }
  68.     public function jsonSerialize()
  69.     {
  70.         return array(
  71.             'id' => $this->id,
  72.             'url' => $this->url,
  73.             'type' => $this->type,
  74.         );
  75.     }
  76.     /**
  77.      * @var string $created
  78.      *
  79.      * @ORM\Column(name="created_at", type="string", nullable=false)
  80.      */
  81.     protected $createdAt;
  82.     /**
  83.      * @var string $updated
  84.      *
  85.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  86.      */
  87.     protected $updatedAt;
  88.     public function getCreatedAt()
  89.     {
  90.         return $this->createdAt;
  91.     }
  92.     public function setCreatedAt($createdAt)
  93.     {
  94.         $this->createdAt $createdAt;
  95.         return $this;
  96.     }
  97.     public function getUpdatedAt()
  98.     {
  99.         return $this->updatedAt;
  100.     }
  101.     public function setUpdatedAt($updatedAt)
  102.     {
  103.         $this->updatedAt $updatedAt;
  104.         return $this;
  105.     }
  106.     /**
  107.      * @ORM\PrePersist
  108.      * @ORM\PreUpdate
  109.      */
  110.     public function updatedTimestamps()
  111.     {
  112.         $this->setUpdatedAt(round(microtime(true) * 1000));
  113.         if ($this->getCreatedAt() === null) {
  114.             $this->setCreatedAt(round(microtime(true) * 1000));
  115.         }
  116.     }
  117.     public function __construct() {
  118.         $this->setCreatedAt(round(microtime(true) * 1000));
  119.     }
  120. }