src/AppBundle/AdminBundle/Entity/Admin_Access_Role_Group.php line 164

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_access_role_group")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class Admin_Access_Role_Group 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 $access_name;
  32.     /**
  33.      * @ORM\Column(type="boolean", nullable=true, options={"default" : 1})
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $active;
  37.     /**
  38.      * @return mixed
  39.      */
  40.     public function getId()
  41.     {
  42.         return $this->id;
  43.     }
  44.     /**
  45.      * @return mixed
  46.      */
  47.     public function getName()
  48.     {
  49.         return $this->name;
  50.     }
  51.     /**
  52.      * @param mixed $name
  53.      */
  54.     public function setName($name)
  55.     {
  56.         $this->name $name;
  57.     }
  58.     /**
  59.      * @return mixed
  60.      */
  61.     public function getActive()
  62.     {
  63.         return $this->active;
  64.     }
  65.     /**
  66.      * @param mixed $active
  67.      */
  68.     public function setActive($active)
  69.     {
  70.         $this->active $active;
  71.     }
  72.     /**
  73.      * @var string $created
  74.      *
  75.      * @ORM\Column(name="created_at", type="string", nullable=false)
  76.      */
  77.     protected $createdAt;
  78.     /**
  79.      * @var string $updated
  80.      *
  81.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  82.      */
  83.     protected $updatedAt;
  84.     public function getCreatedAt()
  85.     {
  86.         return $this->createdAt;
  87.     }
  88.     public function setCreatedAt($createdAt)
  89.     {
  90.         $this->createdAt $createdAt;
  91.         return $this;
  92.     }
  93.     public function getUpdatedAt()
  94.     {
  95.         return $this->updatedAt;
  96.     }
  97.     public function setUpdatedAt($updatedAt)
  98.     {
  99.         $this->updatedAt $updatedAt;
  100.         return $this;
  101.     }
  102.     /**
  103.      * @ORM\PrePersist
  104.      * @ORM\PreUpdate
  105.      */
  106.     public function updatedTimestamps()
  107.     {
  108.         $this->setUpdatedAt(round(microtime(true) * 1000));
  109.         if ($this->getCreatedAt() === null) {
  110.             $this->setCreatedAt(round(microtime(true) * 1000));
  111.         }
  112.     }
  113.     public function __construct() {
  114.         $this->setCreatedAt(round(microtime(true) * 1000));
  115.     }
  116.     public function jsonSerialize()
  117.     {
  118.         return array(
  119.             'id' => $this->id,
  120.             'name' => $this->name,
  121.             'active' => $this->active,
  122.             'access_name' => $this->access_name
  123.         );
  124.     }
  125. }