src/AppBundle/AdminBundle/Entity/Admin_Access_Role_Group_Permission.php line 178

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_permission")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class Admin_Access_Role_Group_Permission 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 getAccessName()
  62.     {
  63.         return $this->access_name;
  64.     }
  65.     /**
  66.      * @param mixed $access_name
  67.      */
  68.     public function setAccessName($access_name)
  69.     {
  70.         $this->access_name $access_name;
  71.     }
  72.     /**
  73.      * @return mixed
  74.      */
  75.     public function getActive()
  76.     {
  77.         return $this->active;
  78.     }
  79.     /**
  80.      * @param mixed $active
  81.      */
  82.     public function setActive($active)
  83.     {
  84.         $this->active $active;
  85.     }
  86.     /**
  87.      * @var string $created
  88.      *
  89.      * @ORM\Column(name="created_at", type="string", nullable=false)
  90.      */
  91.     protected $createdAt;
  92.     /**
  93.      * @var string $updated
  94.      *
  95.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  96.      */
  97.     protected $updatedAt;
  98.     public function getCreatedAt()
  99.     {
  100.         return $this->createdAt;
  101.     }
  102.     public function setCreatedAt($createdAt)
  103.     {
  104.         $this->createdAt $createdAt;
  105.         return $this;
  106.     }
  107.     public function getUpdatedAt()
  108.     {
  109.         return $this->updatedAt;
  110.     }
  111.     public function setUpdatedAt($updatedAt)
  112.     {
  113.         $this->updatedAt $updatedAt;
  114.         return $this;
  115.     }
  116.     /**
  117.      * @ORM\PrePersist
  118.      * @ORM\PreUpdate
  119.      */
  120.     public function updatedTimestamps()
  121.     {
  122.         $this->setUpdatedAt(round(microtime(true) * 1000));
  123.         if ($this->getCreatedAt() === null) {
  124.             $this->setCreatedAt(round(microtime(true) * 1000));
  125.         }
  126.     }
  127.     public function __construct() {
  128.         $this->setCreatedAt(round(microtime(true) * 1000));
  129.     }
  130.     public function jsonSerialize()
  131.     {
  132.         return array(
  133.             'id' => $this->id,
  134.             'name' => $this->name,
  135.             'access_name' => $this->access_name,
  136.             'active' => $this->active,
  137.         );
  138.     }
  139. }