src/AppBundle/MainBundle/Entity/WP_Language.php line 161

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: apple
  5.  * Date: 29/03/19
  6.  * Time: 2:55 PM
  7.  */
  8. namespace App\AppBundle\MainBundle\Entity;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. use JsonSerializable;
  12. /**
  13.  * AddOns
  14.  *
  15.  * @ORM\Entity
  16.  * @ORM\Table(name="wp_language")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class WP_Language  implements JsonSerializable
  20. {
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="AUTO")
  25.      */
  26.     private $id;
  27.     /**
  28.      * @ORM\Column(type="string", nullable=false)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $name;
  32.     /**
  33.      * @ORM\Column(type="string", nullable=false)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $symbol;
  37.     /**
  38.      * @ORM\Column(type="boolean", nullable=false)
  39.      * @Assert\NotBlank()
  40.      */
  41.     private $active;
  42.     /**
  43.      * @ORM\Column(type="string", nullable=false)
  44.      * @Assert\NotBlank()
  45.      */
  46.     private $flag_url;
  47.     /**
  48.      * @ORM\Column(type="integer", nullable=false)
  49.      * @Assert\NotBlank()
  50.      */
  51.     private $seq_number;
  52.     /**
  53.      * @return mixed
  54.      */
  55.     public function getId()
  56.     {
  57.         return $this->id;
  58.     }
  59.     /**
  60.      * @return mixed
  61.      */
  62.     public function getName()
  63.     {
  64.         return $this->name;
  65.     }
  66.     /**
  67.      * @param mixed $name
  68.      */
  69.     public function setName($name)
  70.     {
  71.         $this->name $name;
  72.     }
  73.     /**
  74.      * @return mixed
  75.      */
  76.     public function getSymbol()
  77.     {
  78.         return $this->symbol;
  79.     }
  80.     /**
  81.      * @param mixed $symbol
  82.      */
  83.     public function setSymbol($symbol)
  84.     {
  85.         $this->symbol $symbol;
  86.     }
  87.     /**
  88.      * @return mixed
  89.      */
  90.     public function getActive()
  91.     {
  92.         return $this->active;
  93.     }
  94.     /**
  95.      * @param mixed $active
  96.      */
  97.     public function setActive($active)
  98.     {
  99.         $this->active $active;
  100.     }
  101.     /**
  102.      * @return mixed
  103.      */
  104.     public function getFlagUrl()
  105.     {
  106.         return $this->flag_url;
  107.     }
  108.     /**
  109.      * @param mixed $flag_url
  110.      */
  111.     public function setFlagUrl($flag_url)
  112.     {
  113.         $this->flag_url $flag_url;
  114.     }
  115.     /**
  116.      * @return mixed
  117.      */
  118.     public function getSeqNumber()
  119.     {
  120.         return $this->seq_number;
  121.     }
  122.     /**
  123.      * @param mixed $seq_number
  124.      */
  125.     public function setSeqNumber($seq_number)
  126.     {
  127.         $this->seq_number $seq_number;
  128.     }
  129.     public function jsonSerialize()
  130.     {
  131.         return array(
  132.             'id' => $this->id,
  133.             'name' => $this->name,
  134.             'active' => $this->active,
  135.             'seq_number' => $this->seq_number,
  136.             'flag_url' => $this->flag_url,
  137.             'symbol' => $this->symbol
  138.         );
  139.     }
  140.     /**
  141.      * @var string $created
  142.      *
  143.      * @ORM\Column(name="created_at", type="string", nullable=false)
  144.      */
  145.     protected $createdAt;
  146.     /**
  147.      * @var string $updated
  148.      *
  149.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  150.      */
  151.     protected $updatedAt;
  152.     public function getCreatedAt()
  153.     {
  154.         return $this->createdAt;
  155.     }
  156.     public function setCreatedAt($createdAt)
  157.     {
  158.         $this->createdAt $createdAt;
  159.         return $this;
  160.     }
  161.     public function getUpdatedAt()
  162.     {
  163.         return $this->updatedAt;
  164.     }
  165.     public function setUpdatedAt($updatedAt)
  166.     {
  167.         $this->updatedAt $updatedAt;
  168.         return $this;
  169.     }
  170.     /**
  171.      * @ORM\PrePersist
  172.      * @ORM\PreUpdate
  173.      */
  174.     public function updatedTimestamps()
  175.     {
  176.         $this->setUpdatedAt(round(microtime(true) * 1000));
  177.         if ($this->getCreatedAt() === null) {
  178.             $this->setCreatedAt(round(microtime(true) * 1000));
  179.         }
  180.     }
  181.     public function __construct() {
  182.         $this->setCreatedAt(round(microtime(true) * 1000));
  183.     }
  184. }