src/AppBundle/AdminBundle/Entity/Admin_Language.php line 118

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